function validatePost(frm)
{
	if (frm.fldAuthor.value=="")
	{	window.alert("Please enter your full name");
		frm.fldAuthor.focus();
		return false;
	}

	if (frm.fldEmail.value=="")
	{	window.alert("Please enter your email address");
		frm.fldEmail.focus();
		return false;
	}

	if (!eMailcheck(frm.fldEmail.value) )
	{	window.alert("Please enter a valid email address");
		frm.fldEmail.focus();
		return false;
	}

	if (frm.fldComment.value=="")
	{	window.alert("Please enter your comment");
		frm.fldComment.focus();
		return false;
	}			

	if (frm.strCAPTCHA.value=="")
	{	window.alert("Please enter our Anti-Spam code.");
		frm.strCAPTCHA.focus();
		return false;
	}
	
		return true;
}