// start of JavaScript
var myAddress = "info@kennyshieldsandstreetheart.com";

function nameLink() {
document.writeln("If you'd like to email the band directly, here's our email: <A HREF=\"mailto:" + myAddress + "\">" +
myAddress + "</A>");
} // end nameLinke

function mailLink() {
document.writeln("<A HREF=\"mailto:" + myAddress + "\">\n");
document.writeln("Click here</a> to EMail me.\n");
} // end mailLink
// end of JavaScript