function createMailLink(name,domain,style,text1,text2){
   s='<'+'a h'+'ref="mai'+'lto:'+name+'@'+domain+'" class="'+style+'">';
   if (text1 && text2) {
      s=s+text1+'@'+text2; 
   } else {
      s=s+text1;	
   }
   s=s+'</'+'a>';
   document.write(s);
}

function createMail(text1,text2){
   if (text1 && text2) {
      s=text1+'@'+text2; 
   } else {
      s=text1;	
   }
   document.write(s);
}
