var ext = "arlequinwine.com";

function print_mail_to_link(lhs) 
{
   document.write("<a href=\"mailto");
   document.write(":" + lhs + "@");
   document.write(ext + "\">" + lhs + "@" + ext + "<\/a>");
}

function print_mail_to_href(lhs)
{
   document.write("<a href=\"mailto");
   document.write(":" + lhs + "@");
   document.write(ext + "\">");
} 