/* -- email link -- */
function maillink(lhs,rhs)
	{
	   document.write("<A HREF=\"mailto");
	   document.write(":" + lhs + "@");
	   document.write(rhs + "\" class=dark>" + lhs + "@" + rhs + "<\/a>");
	}

/* -- email icon -- */
function proceed(by)
{
BY = /^(.+)\*(.+)$/;
var launch = by.replace(BY,"mailto:$1@$2");
window.location = launch;
}
	
/* -- Pop Up window with any url -- */
function popUp(url){
window.open(url,'pop','width=440,height=750,status=yes,resizable=yes,scrollbars=yes,top=40,left=50');
}

