// mailMe() function for hiding email addresses on web pages

	function mailMe(adr,srvr) 
	{
		pfx = "mailto:";
		at = "@";
		msg = pfx + adr + at + srvr;
		newWindow = open(msg);
		return true
	}

