function validateForm()
{
	trimFields();
	if(obj.is_returning[0].checked == false && obj.is_returning[1].checked == false)
	{
		alert("Please checked 'Are you a returning volunteer?'.");
		obj.is_returning[0].focus();
		return;
	}
	if(obj.first_name.value == "" || obj.first_name.value == "First Name")
	{
		alert("Please enter Applicant's First Name.");
		obj.first_name.focus();
		return;
	}
	if(obj.mid_name.value == "" || obj.mid_name.value == "Middle Name")
	{
		alert("Please enter Applicant's Middle Name.");
		obj.mid_name.focus();
		return;
	}
	if(obj.initial.value == "" || obj.initial.value == "Initial")
	{
		alert("Please enter Applicant's Initial Name.");
		obj.initial.focus();
		return;
	}
	if(obj.street.value == "" || obj.street.value == "Street")
	{
		alert("Please enter the Street in Address field.");
		obj.street.focus();
		return;
	}
	if(obj.apt.value == "" || obj.apt.value == "Apt#")
	{
		alert("Please enter the Apt# in Address field.");
		obj.apt.focus();
		return;
	}
	if(obj.city.value == "" || obj.city.value == "City")
	{
		alert("Please enter the City.");
		obj.city.focus();
		return;
	}
	if(obj.zip.value == "" || obj.zip.value == "Zip")
	{
		alert("Please enter the Zip.");
		obj.zip.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.home_phone.value == "")
	{
		alert("Please enter the Home Phone.");
		obj.home_phone.focus();
		return;
	}
	if(obj.is_over[0].checked == false && obj.is_over[1].checked == false)
	{
		alert("Please checked 'Are you over 18 years of age?'.");
		obj.is_over[0].focus();
		return;
	}
	if(obj.dob_dd.selectedIndex == 0)
	{
		alert("Please select the Birth Date.");
		obj.dob_dd.focus();
		return;
	}
	if(obj.dob_mm.selectedIndex == 0)
	{
		alert("Please select the Month.");
		obj.dob_mm.focus();
		return;
	}
	if(obj.dob_year.selectedIndex == 0)
	{
		alert("Please select the Year.");
		obj.dob_year.focus();
		return;
	}
	if(obj.best_time.selectedIndex == 0)
	{
		alert("Please select the best Time for Contact You.");
		obj.best_time.focus();
		return;
	}
	if(obj.best_day.selectedIndex == 0)
	{
		alert("Please select the best Day for Contact You.");
		obj.best_day.focus();
		return;
	}
	if(obj.comments.value == "")
	{
		alert("Please enter the Comments.");
		obj.comments.focus();
		return;
	}
	if(obj.captcha_code.value == "")
	{
		alert("Please enter the security code correctly");
		obj.captcha_code.focus();
		return;
	}
	//All fine?
	obj.action = 'volunteer.php';
	obj.submit();
}