function validateForm()
{
	trimFields();
	if(obj.full_name.value == '')
	{
		alert("Please enter your Full Name");
		obj.full_name.focus();
		return;
	}
	if(obj.email.value == '')
	{
		alert("Please enter your Email");
		obj.email.focus();
		return;
	}
	if(!chkEmail(obj.email.value))
	{
		alert("Please enter a valid Email");
		obj.email.focus();
		obj.email.select();
		return;
	}
	if(obj.postal_code.value == '')
	{
		alert("Please enter your Postal Code");
		obj.postal_code.focus();
		return;
	}
	if(obj.question.value == '')
	{
		alert("Please enter your Question");
		obj.question.focus();
		return;
	}
	if(obj.captcha.value == '')
	{
		alert("Please enter the security code on the image.");
		obj.captcha.focus();
		return;
	}
	//All fine
	obj.action = 'ask_us_a_question.php#ask_us';
	obj.submit();
}
