// Tell A Friend Javascript

var initialsubj="EminenceMeadows.com - a recommendation from one of your friends."
var initialmsg="One of your friends recently visited our web site and has asked us to send you a very short note recommending www.EminenceMeadows.com as they feel it may be of interest to you as well. At Eminence Meadows, you will find extensive varieties of the newest and highest quality hostas, heuchera, daylilies and perennials on the market. Don't forget to visit our Art page! Thank you. " +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
   }
}