// Email
function maillink(lhs,rhs)
	{
	document.write("<A HREF=\"mailto");
	document.write(":" + lhs + "@");
	document.write(rhs + "\"class=link>" + lhs + "@" + rhs + "<\/a>");
}
function mailtext(lhs,rhs)
	{
	document.write("<A HREF=\"mailto");
	document.write(":" + lhs + "@");
	document.write(rhs + "\" class=text>" + lhs + "@" + rhs + "<\/a>");
}
function mailgray1(lhs,rhs)
	{
	document.write("<A HREF=\"mailto");
	document.write(":" + lhs + "@");
	document.write(rhs + "\" class=gray1>" + lhs + "@" + rhs + "<\/a>");
}
function proceed(by)
	{
	BY = /^(.+)\*(.+)$/;
	var launch = by.replace(BY,"mailto:$1@$2");
	window.location = launch;
}
//hide menu
function show( id )
	{
	document.getElementById(id).style.display = 'block';
}
function hide( id )
	{
	document.getElementById(id).style.display = 'none';
}
// Pop Up window with any url
	function popUp(url)
	{
	window.open(url,'pop','width=700,height=700,status=yes,resizable=yes,scrollbars=yes,top=40,left=50');
}
//-->