function validate(theForm) 
	{
		if(theForm.name.value=="")
                                                
  			{
			alert("Please fill the Name field...");
			theForm.name.focus();
			return (false);
  			}
		
		if (theForm.email.value=="")
  			{
			alert("Please fill the email field...");
			theForm.email.focus();
			return (false);
  			}
		return (true);
}
