// SPAM DODGER 1.0
// Enter values for the first four variable respectively. The first is the address the message will be sent
// to. The second is the subject line for the message. The third is the body of the message. (Restrain from
// using HTML here.) And the final variable is the text that will be hyperlinked. (This will often be the
// same as the email address.)

// COMPLIANCE
// Tested: Firefox 1.8 and IE 6.0; No known bugs. To report, please contact Support@NuclearHeads.net

// LICENSE
// This script is freeware provided in the effort to defeat spam
function sendMail(emailAddress, emailSubject, emailBody, emailText) {
	document.write('<a href="mailto:'+emailAddress+'?Subject='+emailSubject+'&body='+emailBody+'">'+emailText+'</a>');
}