<!--

 /*
  * Function to create a unharvestable email address or link.
  *
  * Write email links in HTML code like this:
  *
  * <script type="text/javascript">ewrite("anyone","somedomain","com",["displayname"],[0]);</script>
  *
  * If displayname isn't specified,  email link uses email address as displayname.
  * If last argument is specified, and is zero, then just the email address is output.
  */
 function ewrite(a,b,c,d,e){
   var mail;
   var link;
   mail=a+"@"+b+"."+c;
   if(e == 0){
	 document.write(mail);
   }
   else {
	 if(d == null) {
	   link='<a href="mailto:'+mail+'">'+mail+'</a>';
	 }
	 else {
	   link='<a href="mailto:'+mail+'">'+d+'</a>';
	 }
	 document.write(link);
   }
 }
// -->
