/* Use to generate email addresses on the fly in order to thwart email address harvesters *//* Usage example:  Send me a message at my email address: <script type="text/javascript">writeAddr('myname', 'mydomain', 'com')</script> */<!--function writeAddr() {   var i,a=writeAddr.arguments,addr="";   addr += a[0]+"@";   for( i=1; i<a.length; i++ ) {      if( i>1 ) addr += ".";      addr += a[i];   }  // Write html to the browser with the email address  document.write("<a href=\"mailto:" + addr + "\">" + addr + "</a>");}-->