function doOnSubmit()
{
  var errorMsg = "";
  var test = '';
  var index = '';

  test = '' + document.frm.name.value;
  if( test == "" ) {
    errorMsg += "Numele trebuie completat\n";
  }
  test = '' + document.frm.email.value;
  if( test == "" ) {
    errorMsg += "E-mailul trebuie completat\n";
  }
  test = '' + document.frm.comment.value;
  if( test == "" ) {
    errorMsg += "Comentariu trebuie completat\n";
  }

  if( errorMsg != "" ) {
    alert( errorMsg );
    return;
  }
  document.frm.submit();
}