// start of JavaScript
var myAddress = "info@rickdixon.ca";
var myAddress2 = "rick@rickdixon.ca";

function nameLink() {
document.writeln("Rick's email: <A HREF=\"mailto:" + myAddress2 + "\">" +
myAddress2 + "</A><br>");
document.writeln("Other: <A HREF=\"mailto:" + myAddress + "\">" +
myAddress + "</A>");
} // end nameLink

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