var name = "thehardyparty";
var dom = "verizon" + "." + "net";
var txt = "Contact me";
var titl = "Drop me a line";
function mail() {
var img = '<img border="0" src="../images/email.gif" width="13" height="15">';
document.write('<a  href="mailto:' + name + '@' + dom  + '">'  +  img + '</a>' + '<a title= "' + titl + '" href="mailto:' + name + '@' + dom  + '"> ' + txt + '</a>');
}