function validateSend()
{
	trimFields();
	if(obj.your_name.value == "")
	{
		alert("Please enter the Your Name.");
		obj.your_name.focus();
		return;
	}
	if(obj.your_email.value == "")
	{
		alert("Please enter the Your Email.");
		obj.your_email.focus();
		return;
	}
	if(!chkEmail(obj.your_email.value))
	{
		alert("Please enter a valid Email Address.");
		obj.your_email.focus();
		obj.your_email.select();
		return;
	}
	if(obj.std_name.value == "")
	{
		alert("Please enter the Student Name.");
		obj.std_name.focus();
		return;
	}
	if(obj.parent_name.value == "")
	{
		alert("Please enter the Parent Name.");
		obj.parent_name.focus();
		return;
	}
	if(obj.parent_email.value == "")
	{
		alert("Please enter the Parent Email.");
		obj.parent_email.focus();
		return;
	}
	if(!chkEmail(obj.parent_email.value))
	{
		alert("Please enter a valid Email Address.");
		obj.parent_email.focus();
		obj.parent_email.select();
		return;
	}
	if(obj.city.value == "")
	{
		alert("Please enter the City.");
		obj.city.focus();
		return;
	}
	if(obj.state.selectedIndex == 0)
	{
		alert("Please select the State.");
		obj.state.focus();
		return;
	}
	if(obj.std_grade.value == "")
	{
		alert("Please enter the Student Grade.");
		obj.std_grade.focus();
		return;
	}
	if(obj.security_code.value == "")
	{
		alert("Please enter the Security Code as shown on the Image.");
		obj.security_code.focus();
		return;
	}
	//All Okay??
	obj.action = "refer_a_friend.php";
	obj.submit();
}
