<!-- Hide me from older non-JavaScript-enabled browsers
/* Javascript for First UU e-mail */

/* By using the name, at sign, domain, and dotcom separately; and using JavaScript to write out the mailto
tag using variables, we can try to foil e-mail trolling bots. */

/* 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="firstuu";
var atsign="@";
var virtual_domain="twcny.rr";
var dotcom=".com";

document.write("<a href=mailto:",name+atsign+virtual_domain+dotcom,">E-mail</A>");

//-->

