      function showphone(a,b,c) {
        document.write(+a+"-"+b+"-"+c);
      }
      function showemail(d,u) {
        var email = u + "@" + d;
        document.write("<a href=mailto:" + email + ">" + email + "</a>");
      }
