// *******************************************************************
// Use this to change email in once place and it updates on all pages.
// *******************************************************************
// Use this to keep outside sources from sweeping 
// source pages to gather email addresses for spam 
// collection. Use this for all sites.
// *******************************************************************
// I hate how I do the color using an old <font> tag, but in the case
// where the email to link shows up on different colored backgrounds 
// on the same site, this just makes life easier for now.
// *******************************************************************

//begin function genEmail(mycolor)
function genEmail(mycolor) {
myDomain="aol.com";
myName = "walt978";

myEmail = myName + "@" + myDomain;

myString = "<a href='mailto:" + myEmail + "'><font color='" + mycolor + "'>" + myEmail + "</font></a>";

document.write(myString);
} //end function genEmail()


