/*************This script scrambles the email******************************************/

	function unScramble(eMail1,eMail2,linkText,subjectText,statusText)
	   
	{
		var a,b,c,d,e;
		a=eMail1;
		b=eMail2.substring(0,eMail2.length-5);
		c=linkText;
	   
		if(subjectText!="")
			{d="?subject="+escape(subjectText);}
	   	else{d="";}

	   	if(statusText!="")
			{e=" onMouseOver=\"top.status=\'"+statusText+ "\'\;
			return true\;
			\" onMouseOut=\"top.status=\'\'\;
			return true\;
			\"";}
	  	 else{e="";}

		document.write("<A HREF=\"mai"+"lto:"+a+"@"+b+d+"\""+e+">"+c+"</A>");

		/****<a href="mailto:eMail1@eMail2(cut off the last 5)?subject=subjectText"e>linkText</A>" ****/

	}

/*** INSERT this part into the html page:

	<script language="JavaScript">
	unScramble("wrobinson17","shaw.canooks","Email Wendy Robinson","Linked from WWStables Contact Page","Click here to send me email");
	</script>

	<noscript>Email Wendy Robinson: wrobinson17/ÄT/shaw/DÖT/-c-a-/
	</noscript>   *****/
