//
//  Utility functions
//
function email(name, domain, suffix, text)
{
 var address = name + "\u0040" + domain + "." + suffix;
 var url = "ma" + "il" + "to:" + address;

 if ( !text ) { text = address; }

 document.write("<a href=\"" + url + "\">" + text + "</a>");
}

function popWin(winURL)
{
	window.open(winURL, "bob", "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=675,height=650,left=0,top=0");
}
