function veriform(moreinfo)
	{
		if(document.moreinfo.fname.value == "") 
		{
			alert('Please fill in the field: First Name');
			moreinfo.fname.focus();
			return(false);
		}
		if(document.moreinfo.lname.value == "") 
		{
			alert('Please fill in the field: Last Name');
			moreinfo.lname.focus();
			return(false);
		}
		if(document.moreinfo.email.value == "")
		{
			alert('Please fill in the field: Email');
			moreinfo.Email.focus();
			return(false);
		}
		if(document.moreinfo.address1.value == "")
		{
			alert('Please fill in the field: Address 1');
			moreinfo.address1.focus();
			return(false);
		}
		if(document.moreinfo.city.value == "")
		{
			alert('Please fill in the field: City');
			moreinfo.city.focus();
			return(false);
		}
		for (i=0; i < document.moreinfo.state.length; i++){
			if (document.moreinfo.state.options[i].selected){
				if (i == 0){
					alert('Please fill in the field: State');
					moreinfo.state.focus();
					return(false);
				}
			}
		}
		if(document.moreinfo.zip.value == "")
		{
			alert('Please fill in the field: Zip');
			moreinfo.zip.focus();
			return(false);
		}
		if(document.moreinfo.homephone.value == "")
		{
			alert('Please fill in the field: Home Phone');
			moreinfo.homephone.focus();
			return(false);
		}
		if(isNan(document.moreinfo.ESBLength.value))
		{
			alert('Please fill in the field: Estimated Building Length, with a number');
			moreinfo.ESBLength.focus();
			return(false);
		}
		if(isNan(document.moreinfo.ESBWidth.value))
		{
			alert('Please fill in the field: Estimated Building Width, with a number');
			moreinfo.ESBWidth.focus();
			return(false);
		}
		if(isNan(document.moreinfo.ESBHeight.value))
		{
			alert('Please fill in the field: Estimated Building Height, with a number');
			moreinfo.ESBHeight.focus();
			return(false);
		}
	}