function bagMail(theDom, theAcct) {
  var usr = theAcct.replace(/acct_s/g, "sales");
  if (usr.indexOf("acct") == 0) {
  	usr = theAcct.replace(/acct_x/g, "support");
  }
  if (usr.indexOf("acct") == 0) {
  	usr = theAcct.replace(/acct_i/g, "info");
  }
  if (usr.indexOf("acct") == 0) {
  	usr = theAcct.replace(/acct_m/g, "marketing");
  }
  if (usr.indexOf("acct") == 0) {
  	usr = theAcct.replace(/acct_w/g, "webmaster");
  }
  var host = theDom.replace(/di/g,"dient");
  host = host.replace(/gi/g,"digital%23com");
  return(usr+"@"+host.replace(/%23/g,"."));
}
function bagMailLink(theDom, theAcct) {
	return("mai"+"lto"+":"+bagMail(theDom,theAcct));
}
function bagFormMail(theDom, theAcct) {
	return("<input type=hidden name="+bagMail(theDom,theAcct)+">");
}

