<!-- Way to hide an email to prevent spamming. 
/* By storing the name, at sign, domain and dotcom separately, and using Javascript to write out the mailto tag using variables, we can foil e-mail trolling bots. As far as I know, they're not yet that sophisticated :) */ 
/* To modify this Javascript to suit your needs, simply change the values assigned to the variables, and the content of the document.write lines below. */
var name = "jtweaver";
var atsign = "@";
var virtual_domain = "ncn";
var dotcom = ".net";
document.write("<a href=mailto:", name + atsign + virtual_domain + dotcom, ">E-mail us from here.</a>");
document.write("<p>")
document.write("<a href=\"carsforsale.html\">Cars for Sale - Get a great deal today!</a>");
document.write("<p>")
document.write("<a href=\"index.html\">Home</a>")
// -->

