<!--

var initialsubj="Please take time out to look at this website"

var initialmsg="Hi:\n This email is not spam, It was sent to you from our website by one of your friends who would like you to visit our website and see our range of free ebooks, articles, software and much more: "+window.location

var good;

function checkEmailAddress(field) {

var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\.info)|(\.sex)|(\.biz)|(\.aero)|(\.coop)|(\.museum)|(\.name)|(\.pro)|(\..{2,2}))$)\b/gi);

if (goodEmail) {

good = true;

}

else {

alert('Please enter a valid address.');

field.focus();

field.select();

good = false;

   }

}

u = window.location;

function mailThisUrl() {

good = false

checkEmailAddress(document.eMailer.email);

if (good) {

//window.location = "mailto:"+document.eMailer.email.value+"?subject="+initialsubj+"&body="+document.title+" "+u;

window.location = "mailto:"+document.eMailer.email.value+"?subject="+initialsubj+"&body="+initialmsg

   }

}

//-->