function writemail(a,b,c,d,e){
if (d){
   if (e){
      the_string = "<a class='"+e+"' href='mailto:"+a+"@"+b+"."+c+"'>"+d+"</a>";
    } else {
      the_string = "<a href='mailto:"+a+"@"+b+"."+c+"'>"+d+"</a>";
    }  
 } else {
   if (e){
      the_string = "<a class='"+e+"' href='mailto:"+a+"@"+b+"."+c+"'>"+a+"@"+b+"."+c+"</a>";
    } else {
      the_string = "<a href='mailto:"+a+"@"+b+"."+c+"'>"+a+"@"+b+"."+c+"</a>";
    }  
 }
return (the_string);
}
