<!--
function validate_comment_form(name,website,comments)
{
  if (comments.value==""||comments.value==null||comments.value=="Add comments here")
    {alert("Please enter some comments");return false}
  if (name.value==""||name.value==null||name.value=="Name (optional)")
    {name.value="anonymous"}
  if (website.value==""||website.value==null||website.value=="Website (optional)")
    {website.value="none"}
  comments.value=comments.value.replace(/\n/g,"<br />");
  comments.value=comments.value.replace(/'/g,"&#39;");
  name.value=name.value.replace(/'/g,"&#39;");
  return true
}
//-->


