<!--
 function writemail(a,b,c,d) {
  if (d) {
   the_string = "<a href='mailto:"+a+"@"+b+"."+c+"'>"+d+"</a>";
  }
  else {
   the_string = "<a href='mailto:"+a+"@"+b+"."+c+"'>"+a+"@"+b+"."+c+"</a>";
  }
  return (the_string);
 }
 function writemail_map(shape, coords, user, domain) {
  the_string = "<area shape="+shape+" coords="+coords+" href=mailto:"+user+"@"+domain+">";
  return (the_string);
 }
 
 function setActiveStyleSheet(title) {
   var i, a, main;
   for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
     if(a.getAttribute("rel").indexOf("style") != -1
        && a.getAttribute("title")) {
       a.disabled = true;
       if(a.getAttribute("title") == title) a.disabled = false;
     }
   }
}
 //-->