function validateForm()
{
	trimFields();
	if(obj.student_name.value == "")
	{
		alert("Please enter Student Name.");
		obj.student_name.focus();
		return;
	}
	if(obj.parent_name.value == "")
	{
		alert("Please enter Parent Name.");
		obj.parent_name.focus();
		return;
	}
	if(obj.parent_email.value == "")
	{
		alert("Please enter Parent Email.");
		obj.parent_email.focus();
		return;
	}
	if(!chkEmail(obj.parent_email.value))
	{
		alert("Invalid Email ID!\nPlease review and correct it.");
		obj.parent_email.focus();
		obj.parent_email.select();
		return;
	}
	if(obj.home_phone.value == "")
	{
		alert("Please enter Home Phone Number.");
		obj.home_phone.focus();
		return;
	}
	if(obj.security_code.value == "")
	{
		alert("Please enter 6-digit security code correctly");
		obj.security_code.focus();
		return;
	}
	//All Okay??
	obj.action = "contact_us.php";
	obj.submit();
}