/* customised scripts for www.feetessentials.com */


/* client-side form validation for search utility */
function ValidateSearch() {
	if (document.search.q.value.length == 0)
			{alert("Please enter a word (or words) you wish to search for, then click the Search button."); return false;}
		else return true;
	}	


/* client-side form validation for form.htm */
function Validate() {
	if (document.contact_form.fullname.value.length == 0)
	  	{alert("You must enter your name."); return false;}
	else if (document.contact_form.email.value.length == 0)				  	 
		{alert("You must enter your email address."); return false;}										
	else return true;
}