function validateComment()
{
if(commentForm.user.value == "")
{
	alert("Please Enter Your Name");
	commentForm.user.focus();
	return(false);
}
if(commentForm.comment.value == "")
{
	alert("Please Enter comments");
	commentForm.comment.focus();
	return(false);
}
}
