function checkform()
{
if (document.formular.comments.value == "")
{
alert("Please enter your message first!");
document.formular.comments.focus();
return (false);
}
return (true);
}
