function ContactUsForm_Validator(theForm)
{
	if (theForm.Company.value == '' || theForm.Company.value == ' ')
	{
		alert('Please enter a value for the Company field.');
		theForm.Company.value = '';
		theForm.Company.focus();
		return (false);
	}
	
	if (theForm.Contact.value == '' || theForm.Contact.value == ' ')
	{
		alert('Please enter a value for the Contact Person field.');
		theForm.Contact.value = '';
		theForm.Contact.focus();
		return (false);
	}
	
	if (theForm.Address.value == '' || theForm.Address.value == ' ')
	{
		alert('Please enter a value for the Address field.');
		theForm.Address.value = '';
		theForm.Address.focus();
		return (false);
	}
	
	if (theForm.City.value == '' || theForm.City.value == ' ')
	{
		alert('Please enter a value for the City field.');
		theForm.City.value = '';
		theForm.City.focus();
		return (false);
	}
	
	if (theForm.State.value == '' || theForm.State.value == ' ')
	{
		alert('Please enter a value for the State field.');
		theForm.State.value = '';
		theForm.State.focus();
		return (false);
	}
	
	if (theForm.State.value.length != 2)
	{
		alert('Please enter 2 characters for the State field.');
		theForm.State.focus();
		return (false);
	}
	
	if (AcceptableCharacters(theForm.State.value, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', 'State', '') == false){
  	return (false)}
	
	if (theForm.Zip.value == '' || theForm.Zip.value == ' ')
	{
		alert('Please enter a value for the Zip field.');
		theForm.Zip.value = '';
		theForm.Zip.focus();
		return (false);
	}
	
	if (theForm.Zip.value.length != 5)
	{
		alert('Please enter 5 characters for the Zip field.');
		theForm.Zip.focus();
		return (false);
	}
	
	if (AcceptableCharacters(theForm.Zip.value, '0123456789', 'Zip', '') == false){
  	return (false)}
	
	if (theForm.Phone.value == '' || theForm.Phone.value == ' ')
	{
		alert('Please enter a value for the Phone field.');
		theForm.Phone.value = '';
		theForm.Phone.focus();
		return (false);
	}
	
	if (theForm.Email.value == '' || theForm.Email.value == ' ')
	{
		alert('Please enter a value for the Email field.');
		theForm.Email.value = '';
		theForm.Email.focus();
		return (false);
	}
	
	if (emailCheck(theForm.Email.value) == false){
  			return (false)}
			
	return true;
}