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 mailLink(myClass,one,two,three,text){
emailE=one+two+three;
document.write('<A class="' + myClass + '" href="mailto:' + emailE + '">' + text + '</a>')
}