/* Common Utilities */

var em = new Array (5);
em[0] = new Array ("No One", "nospam", "nowhere.com");
em[1] = new Array ("Murry Pitts", "mpitts", "cardedgraphics.com");
em[2] = new Array ("Mike Keaton", "mkeaton", "cardedgraphics.com");
em[3] = new Array ("Kathryn Padgett", "kpadgett", "cardedgraphics.com");
em[4] = new Array ("Tommy Cooper", "tcooper", "cardedgraphics.com");

function emmask (idx)
{
  document.write("<a id=" + idx + " href=\"ma" + "ilto:" + em[idx][1] +
                 "&#64;" + em[idx][2] +
                 "\" OnMouseOver=\"ShowAddr()\" OnMouseOut=\"ShowText()\">" +
                 em[idx][0] + "</a>");
}

function ShowAddr ()
{
  var idx = event.srcElement.id;
  event.srcElement.innerText = em[idx][1] + "@" + em[idx][2];
}

function ShowText ()
{
  event.srcElement.innerText = em[event.srcElement.id][0];
}
