<!--
function checkform ( form )
{
  // see http://www.thesitewizard.com/archive/validation.shtml
  // for an explanation of this script and how to use it on your
  // own website

  // ** START **
  if (form.qcom5.value == "") {
    alert( "Please enter your question or comment." );
    form.qcom5.focus();
    return false ;
  }
  // ** END **
  return true ;
}
//-->