function ValidateForm()
	{
		// screen validation - required fields
		if (document.FormName.Name.value == '' || document.FormName.Name.value == ' ')
			{
			alert("Name is required");
			document.FormName.Name.focus();
			return;
			}
		if (document.FormName.Email.value == '' || document.FormName.Email.value == ' ')
			{
			alert("Email is required");
			document.FormName.Email.focus();
			return;
			}
		if (document.FormName.Address1.value == '' || document.FormName.Address1.value == ' ')
			{
			alert("Address is required");
			document.FormName.Address1.focus();
			return;
			}
		if (document.FormName.City.value == '' || document.FormName.City.value == ' ')
			{
			alert("City is required");
			document.FormName.City.focus();
			return;
			}
		if (document.FormName.State.value == 'blank')
			{
			alert("State is required");
			document.FormName.State.focus();
			return;
			}
		if (document.FormName.Zip.value == '' || document.FormName.Zip.value == ' ')
			{
			alert("Zip Code is required");
			document.FormName.Zip.focus();
			return;
			}
		
		if (document.FormName.phone.value == '' || document.FormName.phone.value == ' ')
			{
			alert("Phone Number is required");
			document.FormName.phone.focus();
			return;
			}
			
		if (document.FormName.validate.value == '' || document.FormName.validate.value != '35446')
			{
			alert("Please enter the number you see in the blue box");
			document.FormName.validate.focus();
			return;
			}
			
		document.FormName.submit();
	}

