<!--  
// Email
function maillink(lhs,rhs)
	{
	document.write("<a HREF=\"mailto");
	document.write(":" + lhs + "@");
	document.write(rhs + "\">" + lhs + "@" + rhs + "<\/a>");
}

// Pop Up window with any url
function popUp(url){
window.open(url,'pop','width=680,height=600,status=yes,resizable=yes,scrollbars=yes,top=40,left=200');
}

//-->