function validateForm()
{
	trimFields();
	if(obj.name.value == "")
	{
		alert("Please enter your Name.");
		obj.name.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 review and correct it.");
		obj.email.focus();
		obj.email.select();
		return;
	}
	if(obj.comment.value == "")
	{
		alert("Please enter your Comments/Questions.");
		obj.comment.focus();
		return;
	}
	//All Okay??
	obj.action = "contact.php";
	obj.submit();
}