// start of JavaScript
var myAddress = "webservant@kjsmradio.com";

function nameLink() {
document.writeln("Questions: <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