//
// JavaScript Email Cloaking
// by Shawn K. Hall
// 
// URL: http://pubs.logicalexpressions.com/Pub0009/LPMArticle.asp?ID=755
//
// Description: A function when called will replace the encoded email with the real thing .
//
function mailMe(sDom, sUser){
  return("mail"+"to:"+sUser+"@"+sDom.replace(/%23/g,"."));
}