function validateForm()
{
	trimFields();
	if(obj.contact_name.value == '')
	{
		alert("Please enter Your Name");
		obj.contact_name.focus();
		return;
	}
	if(obj.email.value == '')
	{
		alert("Please enter Your Email Address");
		obj.email.focus();
		return;
	}
	if(!chkEmail(obj.email.value))
	{
		alert("Please enter a valid Email Address");
		obj.email.focus();
		obj.email.select();
		return;
	}
	var counter = false;
	for(i = 0;i < obj.elements['occupation'].length;i++)
	{
		if(obj.elements['occupation'][i].checked)
			counter = true;
	}
	if(!counter)
	{
		alert('Please check one from\n"I am writting as a ..."');
		obj.elements['occupation'][0].focus();
		return;
	}
	if(obj.comments.value == '')
	{
		alert("Please enter Comments");
		obj.comments.focus();
		return;
	}
	if(obj.captcha.value == '')
	{
		alert("Please enter the Security Code on the left image.");
		obj.captcha.focus();
		return;
	}
	//All fine?
	obj.action = 'contact_ruth.php';
	obj.submit();
}