

var initialsubj="Thought you might like this St John Villa Rental Website"

var initialmsg = "";



initialmsg += "Hi,%0D%0A%0D%0A";

initialmsg += "Your friend suggested you take at the following link:%0D%0A";

initialmsg += "Title: "+document.title+"%0D%0A";

initialmsg += "Location: "+window.location+ "%0D%0A";



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="+initialmsg

		

   }

}
