function gotosite(site) {
	if (site != "") {
		self.location=site
	} 
}
function openWin(){
thepage="/TellAFriend.cfm?ThePage=" + location.href;
window.open(thepage,"newWin","toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=590,height=400");
}

function checkML() {
		f = document.MLForm;				// the form
		e = document.MLForm.elements;		// elements of the form
		l = document.MLForm.length;		// number of form elements

		if (f.Subscriber.value.length===0)  { alert("Please enter your Name."); 			f.Subscriber.focus(); return false; }
		if (f.Email.value.length===0)  { alert("Please enter your Email Address."); f.Email.focus(); return false; }
		var re = new RegExp("^[0-9A-Z]+([-_.0-9A-Z])*@[0-9A-Z]+([-.][0-9A-Z]+)*[.][A-Z]{2,4}$","i");
		if(!re.test(f.Email.value))
		{	alert("Please enter a valid Email Address.");
			f.Email.focus();
			return false;
		}
	return true;
}