<!-- Begin
var initialsubj="FYI: The Mayflower Health and Beauty Clinic"
var initialmsg="Hi,\n I thought you may be interested in the super treatments offered by Mayflowers. Have a browse around their website and come back to me? You will discount off your first treatment and I also get a little something just for recommending you. You will need to print this email and bring it with you when you go to your first appointment to receive a discount or special referral offer. See you soon. http://www.mayflowerbeautyclinic.com"
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
   }
}
//  End -->
