//+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
// print_mailto_link
//------------------
// Script to WRITE an email address for fooling the spaming bots.
//	7/5/2005 3:10:33 PM - nnorris
// http://www.blazonry.com/javascript/js_hiding.php
// use: <S CRIPT LANGUAGE="JavaScript" type="text/javascript">print_mailto_link("nathann","PMAlasvegas.com")</SC RIPT>

	function print_mailto_link(lhs,rhs) 
	{
	   document.write("<A HREF=\"mailto");
	   document.write(":" + lhs + "@");
	   document.write(rhs + "\">" + lhs + "@" + rhs + "<\/a>");
	}
//------------------
// print_mailto_link
//----------------------------------------------------------------------