function validateForm()
{
	trimFields();
	if(obj.full_name.value == "")
	{
		alert("Please enter your Name.");
		obj.full_name.focus();
		return;
	}
	if(obj.city.value == "")
	{
		alert("Please enter the City name.");
		obj.city.focus();
		return;
	}
	if(obj.zip.value == "")
	{
		alert("Please enter correct Zip code.");
		obj.zip.focus();
		return;
	}
	if(obj.phone.value == "")
	{
		alert("Please enter your Phone Number.");
		obj.phone.focus();
		return;
	}
	if(obj.email.value == "")
	{
		alert("Please enter your Email ID.");
		obj.email.focus();
		return;
	}
	if(!chkEmail(obj.email.value))
	{
		alert("Invalid Email ID!\nPlease review and correct it.");
		obj.email.focus();
		obj.email.select();
		return;
	}
	if(obj.live[0].checked)
	{
		if(obj.year_built.value == "")
		{
			alert("Please put the approximate Year of Built");
			obj.year_built.focus();
			return;
		}
	}
	if(obj.property_amount.value == "")
	{
		alert("Please enter the amount of Personal Property do you need to insure");
		obj.property_amount.focus();
		return;
	}
	if(obj.property_amount.value < 20000)
	{
		alert("Amount should be more than 20,000");
		obj.property_amount.focus();
		obj.property_amount.select();
		return;
	}
	if(!obj.claims[1].checked)
	{
		if(obj.claim_explain.value == "")
		{
			alert("Please explain the Claims");
			obj.claim_explain.focus();
			return;
		}
	}
	if(obj.preferred_deductible.selectedIndex == 0)
	{
		alert("Please select the Deductible amount");
		obj.preferred_deductible.focus();
		return;
	}
	if(obj.receive_your_quote.selectedIndex == 0)
	{
		alert("Please select How would you like to receive your quote");
		obj.receive_your_quote.focus();
		return;
	}
	if(obj.captcha.value == "")
	{
		alert("Please enter the security code correctly");
		obj.captcha.focus();
		return;
	}
	//All Okay??
	obj.action = "renter_condo_insurance.html";
	obj.submit();
}



