function postage(one,two,three){
      window.location = 'mailto:'+one+two+three;
}
 
function mailToLink(myClass,one,two,three){
emailE=one+two+three;
document.write('<a class="' + myClass + '" href="mailto:' + emailE + '">' + emailE + '</a>')
}

function myMailLink(myClass,one,two,three,myText){
emailE=one+two+three;
document.write('<a class="' + myClass + '" href="mailto:' + emailE + '">' + myText + '</a>')
}
