	function checkit(theForm)
	{
	
	  if (theForm.Contact_FullName.value == "")
	  {
	    alert("Please enter a value for the \"Contact_FullName\" field.");
	    theForm.Contact_FullName.focus();
	    return (false);
	  }
	
	  if (theForm.Contact_FullName.value.length < 2)
	  {
	    alert("Please enter at least 2 characters in the \"Contact_FullName\" field.");
	    theForm.Contact_FullName.focus();
	    return (false);
	  }
	
	  if (theForm.Contact_FullName.value.length > 255)
	  {
	    alert("Please enter at most 255 characters in the \"Contact_FullName\" field.");
	    theForm.Contact_FullName.focus();
	    return (false);
	  }
	
	  if (theForm.Contact_WorkPhone.value == "")
	  {
	    alert("Please enter a value for the \"Contact_WorkPhone\" field.");
	    theForm.Contact_WorkPhone.focus();
	    return (false);
	  }
	
	  if (theForm.Contact_WorkPhone.value.length < 2)
	  {
	    alert("Please enter at least 2 characters in the \"Contact_WorkPhone\" field.");
	    theForm.Contact_WorkPhone.focus();
	    return (false);
	  }
	
	  if (theForm.Contact_WorkPhone.value.length > 25)
	  {
	    alert("Please enter at most 25 characters in the \"Contact_WorkPhone\" field.");
	    theForm.Contact_WorkPhone.focus();
	    return (false);
	  }
	  return (true);
	}

