function validateForm()
{
	trimFields();
	if(obj.txtComments.value == "")
	{
		alert("Please enter your Comments.");
		obj.txtComments.focus();
		return false;
	}
	if(obj.txtName.value == "")
	{
		alert("Please enter your Name.");
		obj.txtName.focus();
		return false;
	}
	if(obj.txtEmail.value == "")
	{
		alert("Please enter your Email Address.");
		obj.txtEmail.focus();
		return false;
	}
	if(!chkEmail(obj.txtEmail.value))
	{
		alert("The Email Address appears to be invalid!\nPlease review and correct it.");
		obj.txtEmail.focus();
		obj.txtEmail.select();
		return false;
	}
	//All okay?
	return true;
}

