function validateit()
{
temp = true;
 if(document.analysis.fname.value == '' || document.analysis.lname.value == '' || document.analysis.dphone.value == '' || document.analysis.ephone.value == '' || document.analysis.email.value == '' || document.analysis.address.value == '' || document.analysis.city.value == '' || document.analysis.state.value == '' || document.analysis.zip.value == ''  || document.analysis.bedroom.value == '' || document.analysis.bathroom.value == '')
	{
	temp = false;
	alert('Please fill out all required fields to continue...');
	}
 return temp;
}