var initialsubj="University Readers Custom Publishing"
var initialmsg="I recently learned about a company that might be helpful to you. University Readers produces print and digital course packs and custom textbooks for over 1000 professors, and their prices are excellent – students can save as much as 30 percent using them. Their turnaround is very quick, and they offer free pickup and assembly of original material (and even free desk copies, table of contents, pagination, digital enhancement and copyright clearance management!). You can contact their staff at 800-200-3908 or send and email to info@universityreaders.com. Check out their website: "+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 email 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
   }
}
