/* email protection (uid and domain fields are required) */
function mailTo(uid, domain, subject) {
if(!subject){
   window.location="mailto:"+uid+"@"+domain;
   } else {
   window.location="mailto:"+uid+"@"+domain+"?subject="+subject;
   }
}
 
 
/* if we need show the email on mouseover, also add (all fields are required): */
function showemail(id, uid, domain) {
   document.getElementById(id).title= uid+"@"+domain;
}
