// JavaScript Document
var my_domain = "graphicaccounts&#46;com"
function wrt_addr(mydomain, sub_dom) {
  document.write(sub_dom + "&#64;");
  document.write(mydomain);
}
function full_addr(mydomain, sub_dom) {
  document.write("<a href=\"mail");
  document.write("to:");
  wrt_addr(mydomain, sub_dom);
  document.write("\">");
  wrt_addr(mydomain, sub_dom);
  document.write("<\/a>");
}
function getaddr(sub_dom) {
  full_addr(my_domain, sub_dom);
}

