				function ValidateContactForm(Formname)
								 {
								 //alert("Hello Taco"+Formname);
								 if (window.document.forms[Formname].name.value == "" || window.document.forms[Formname].name.value == "Your Name")
								 		{
										window.document.forms[Formname].name.focus();
										window.document.forms[Formname].name.select();
										alert("Please enter your name.");
										return false;
										}
								 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;
										}
								 }
				function ValidateProfessionalContactForm(Formname)
								 {
								 //alert("Hello Taco"+Formname);
								 if (window.document.forms[Formname].name.value == "" || window.document.forms[Formname].name.value == "Your Name")
								 		{
										window.document.forms[Formname].name.focus();
										window.document.forms[Formname].name.select();
										alert("Please enter your name.");
										return false;
										}
								 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;
										}
								 }
								 
				function ValidateRegisterForm(Formname)
								 {
								 //alert("Hello Taco"+Formname);
								 if (window.document.forms[Formname].first.value == "" || window.document.forms[Formname].first.value == "Your first")
								 		{
										window.document.forms[Formname].first.focus();
										window.document.forms[Formname].first.select();
										alert("Please enter your first name.");
										return false;
										}
								 if (window.document.forms[Formname].last.value == "" || window.document.forms[Formname].last.value == "Your last")
								 		{
										window.document.forms[Formname].last.focus();
										window.document.forms[Formname].last.select();
										alert("Please enter your last name.");
										return false;
										}
								 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;
										}
								 if (window.document.forms[Formname].password1.value == "" || window.document.forms[Formname].password1.value == "Your password1")
								 		{
	   								window.document.forms[Formname].password1.focus();
	   								window.document.forms[Formname].password1.select();
	   								alert("Please enter the first password");
	   								return false;
										}
								 if (window.document.forms[Formname].password2.value == "" || window.document.forms[Formname].password2.value == "Your password2")
								 		{
	   								window.document.forms[Formname].password2.focus();
	   								window.document.forms[Formname].password2.select();
	   								alert("Please enter the second password");
	   								return false;
										}
								 if (window.document.forms[Formname].password1.value != window.document.forms[Formname].password2.value)
								 		{
	   								window.document.forms[Formname].password1.focus();
	   								window.document.forms[Formname].password1.select();
	   								alert("The Password do no match. Please retype them.");
	   								return false;
										}
								 }
								 
								 
				function ValidateLoginForm(Formname)
								 {
								 //alert("Hello Taco"+Formname);
								 if (window.document.forms[Formname].login_name.value == "" || window.document.forms[Formname].login_name.value == "Your Name")
								 		{
										window.document.forms[Formname].login_name.focus();
										window.document.forms[Formname].login_name.select();
										alert("Please enter your login name.");
										return false;
										}
								 if (window.document.forms[Formname].login_password.value == "" || window.document.forms[Formname].login_password.value == "Your Email")
								 		{
	   								window.document.forms[Formname].login_password.focus();
	   								window.document.forms[Formname].login_password.select();
	   								alert("Please enter your password");
	   								return false;
										}
								 }
				function ValidateForgotForm(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;
										}
								 }							
								 	 								 								 
				function ValidateUpdateForm(Formname)
								 {
								 //alert("Hello Taco"+Formname);
								 if (window.document.forms[Formname].first.value == "" || window.document.forms[Formname].first.value == "Your first")
								 		{
										window.document.forms[Formname].first.focus();
										window.document.forms[Formname].first.select();
										alert("Please enter your first name.");
										return false;
										}
								 if (window.document.forms[Formname].last.value == "" || window.document.forms[Formname].last.value == "Your last")
								 		{
										window.document.forms[Formname].last.focus();
										window.document.forms[Formname].last.select();
										alert("Please enter your last name.");
										return false;
										}
								 }								 
