				function emailbookValidate(Formname)
								 {
								 //alert("Hello Taco"+Formname);
								 if (window.document.forms[Formname].email.value == "" || window.document.forms[Formname].email.value == "Your Email")
								 		{
	   								window.document.forms[Formname].email.focus();
	   								window.document.forms[Formname].email.select();
	   								alert("Please enter your email address");
	   								return false;
										}
								 }

