function mail_to(recipient, domain) 
{
    var address = "mailto:" + recipient + "@" + domain
    location.href = address; 
} 


