function validateForm()
{
	trimFields();
	if(obj.my_question.value == "")
	{
		alert("Please enter your Question/Comment.");
		obj.my_question.focus();
		return;
	}
	if(obj.first_name.value == "")
	{
		alert("Please enter your First Name.");
		obj.first_name.focus();
		return;
	}
	if(obj.work_phone.value == "")
	{
		alert("Please enter your Work Phone Number.");
		obj.work_phone.focus();
		return;
	}
	if(obj.email.value == "")
	{
		alert("Please enter your Email Address.");
		obj.email.focus();
		return;
	}
	if(!chkEmail(obj.email.value))
	{
		alert("Invalid Email Address.\n Please check and correct it.");
		obj.email.focus();
		return;
	}
	if(obj.captcha.value == "")
	{
		alert("Please enter the number on the image given.");
		obj.captcha.focus();
		return false;
	}
	//All okay??
	obj.action = "contact_us.php";
	obj.submit();
}

