function convM(Mail){
 var a="",c="";
 for(i=0; i<Mail.length; i++){
  c=Mail.charCodeAt(i);
  a +=String.fromCharCode(c+1);
 }
 return a;
}
function wMail() {
 var m=convM(String.fromCharCode(114,108,96,44,102,104,63,114,116,109,115,110) + String.fromCharCode(113,120,45,98,110,45,105,111));
 document.write('<a href="mai' + 'lto:' + m + '">For general inquiries</a>');
}

function wMail2() {
 var n=convM(String.fromCharCode(114,108,96,44,111,113,63,114,116,109,115,110) + String.fromCharCode(113,120,45,98,110,45,105,111));
 document.write('<a href="mai' + 'lto:' + n + '">For press use only</a>');
}