function generate_address(username, domain, root) {
	var atsign = "&#64;";
	var addr = username + atsign + domain + root;
	document.write("<" + "a" + " " + "href=" + "mail" + "to:" + addr + ">" + addr + "<\/a>");

}
function expandClose() {
	var i,a=expandClose.arguments;
	var hiddenDiv ;
	for(i=0;i<(a.length);i+=1)  {
		hiddenDiv = document.getElementById(a[i]);	
		if (hiddenDiv != null) {
			if (i == 0) {
				hiddenDiv.style.display = (hiddenDiv.style.display == "none" ) ? "" : "none"; }
			else {
				hiddenDiv.style.display = "none" ;	}
		} 
	} // end for
} 
function expandIt(el,img) {
	var hiddenDiv = document.getElementById(el);
	if (hiddenDiv != null) {
	    hiddenDiv.style.display = (hiddenDiv.style.display == "none" ) ? "" : "none";
		if (img != null) {
			document.images[img].src= (hiddenDiv.style.display == "" ) ? "site/images/dotx.gif" : "site/images/dots.gif"; }
	}
} 