// JavaScript Document

function ShowHide(theItem){ 
   if(document.getElementById){ 
   var theElement = document.getElementById(theItem); 
      if(theElement.style.display != "block"){ 
         theElement.style.display = "block"; 
      }else{ 
         theElement.style.display = "none"; 
      } 
   } 
}  


function generate_address( username, hostname, displaytext ) {
     var domain = ".com";
     var atsign = "&#64;";
     var addr = username + atsign + hostname + domain;
		if ( displaytext == null ) displaytext = addr;
              document.write( 
              "<" + "a" + " " + "href=" + "mail" + "to:" + addr + ">" + displaytext + "<\/a>");
}

function open_win( theURL, winName, theSize ) {
	var thePrefix = "http://www.theicongroup.com/";
	popupWindow = window.open(thePrefix + theURL,"","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no," + theSize );
	popupWindow.name = winName;
}

function close_win( ) {
	popupWindow.close();
}