$(document).ready(function(){
	$("#friend_submit").click(function(){
		var initialsubj="BestDiscountsandCoupons.com"

		var field = document.eMailer.email;
		var name = document.eMailer.firstname.value;

		var initialmsg="Hey there, " + name + "!\n\n I thought you'd like to check out this site: http://www.BestDiscountsandCoupons.com"


		var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\.info)|(\.biz)|(\.aero)|(\.coop)|(\.museum)|(\.name)|(\.pro)|(\..{2,2}))$)\b/gi);
		
		if (goodEmail) {
			window.location = "mailto:"+document.eMailer.email.value+"?subject="+initialsubj+"&body="+initialmsg
		}else{
			alert('Please enter a valid address.');
			field.focus();
			field.select();
   		}
		return false;
	});
});

