<!--
//this script is a modified version of A1 JavaScripts Aniti Spam Script
//now with the addtion of being able to use the ?Subject line trick so it enters
//the subject of the message you want when clicked on.

//The original script belongs to A1 JavaScripts, modified script was created by
//Michael Ward. visit me @ http://www.tokyostation.net and now http://www.tokyostation.org

///simply enter your emailname and emailserver below
//and copy and paste to entire script where you want it to show.
//Just replace where it says I love A1 JavaScripts with the subject you want to apear when the url is clicked on.
//you can also change it so it will add text in the CC, BCC, or even the Body.
//to do so, just replace the 3 spots where the word *subject* apear with either
//CC, BCC, or Body, depending on which field you want text to apear.

//!!!IMPORTANT!!! Remember to make sure you remove ALL the ** (Asterisks) below when done, or the script will not work.

emailname = "CustomerService"
emailserver = "timeofday.us"
subject = "Customer Service"

//change the font face, color and size below


document.write('<p style="text-align:center; font-family:Arial, Helvetica, sans-serif; font-weight:bold; color:black; font-size:10pt;">');
document.write("<a href='mailto:" + emailname + "@" + emailserver + "?subject=" + subject + "'>");
document.write("Email Us");
document.write('</a><br><font size=4><a href="#top">Return to top of page.</a></font>');
document.write("</p>");
//-->
