var initialsubj="Hi, I found this great web site about the Medifast Weight Loss Products"
var initialmsg = "Hi, You've got to hear this great video testamonial on the top of the page on the Medifast program and how you can lose weight and reduce or even eliminate your Cholesterol, Blood Pressure and Diabetic Medications! Just click on this link: http://www.GetYouHealth.com/medifastyoutubevideo.asp"
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
   }
}