// JavaScript Document
function FnChkComm()
{
if(frmComm.comment.value=="")
{
alert("Enter your comment.");
frmComm.comment.focus();
return false;
}
return true;
}
