<!--
function maillink(lhs,rhs)
	{
	   document.write("<A HREF=\"mailto");
	   document.write(":" + lhs + "@");
	   document.write(rhs + "\" class=dark>" + lhs + "@" + rhs + "<\/a>");
	}
	
	// Pop Up window with any url
function popUp(url){
window.open(url,'pop','width=440,height=500,status=yes,resizable=yes,scrollbars=yes,top=40,left=50');
}