function Validatecontactform(theForm)
	{
	
	if (theForm.firstname.value == "")
	{
	  alert("Please enter your name.");
	  theForm.firstname.focus();
	  return (false);
	} /* First_Name */
	

		
	if (theForm.email.value == "")
	{
	  alert("Please enter your email.");
	  theForm.email.focus();
	  return (false);
	} /* email */

		

	if (theForm.comments.value == "")
	{
	  alert("Please enter some comments as to why you are contacting us.");
	  theForm.comments.focus();
	  return (false);
	} /* comments */
	
		    
	theForm.submit();
	
	} /* Validatecontactform */
	

