<!-- 
function validateform()
{
if ((document.form.FirstName.value=="")||
(document.form.LastName.value=="")||
(document.form.Email.value=="")||
(document.form.Comment.value=="")
)
{
window.alert ("You must complete the form before submitting your comment.")
return false;
}
}
//-->