// writeMailTo(u, s)
//
// Purpose:
// This is a convoluted function to add a mailto link to a webpage. It uses
// document.write to hide the email address from viruses and spam engines
// that work by parsing source files.
//
// Parameters:
// u - the email address user name (the domain is fixed in the code)
// s - the subject of the email ("" for none)
function writeMailTo(u, s)
{
   var a="@",l="<",r=">",c=":",d2="c"+"o"+"m",e="=",p=".",q="?",o=" ",x="+",d1=
   "l"+"o"+"r"+"a"+"g"+"e"+"n",t1="a",t3="m"+"a"+"i"+"l",t2=o+"h"+"r"+"e"+"f"+e
   ,t4="t"+"o"+c,w="d"+"o"+"c"+"u"+"me"+"n"+"t"+p+"w"+"r"+"i"+"t"+"e"+"("+"l"+x
   ;for(var i=1;i<5;i++) w+="t"+(i)+x;w+="u"+x+"a"+x+"d1"+x+"p"+x+"d2"+x+"q"+x+
   "\""+"su"+"bj"+"e"+"c"+"t"+"\""+x+"e"+x+"e"+"s"+"cap"+"e"+"("+"s"+")"+x+"r"+
   x+"u"+x+"a"+x+"d1"+x+"p"+x+"d2"+x+"l"+x+"\"/\""+x+"t1"+o+x+"r"+");";eval(w);
}