<!--
function statusMsg(msg) {
  status = msg;
}

function testForm(lng) {
  if (isMeno(lng) && isTelefon(lng)) {
    document.dotaznik.submit();
    return true;
  }
  return false;
}

function isMeno(lng) {
  if (document.dotaznik.meno.value == "") {
    if (lng == 'sk') {
      alert('\"Meno\" je povinné pole, vyplote ho prosím.');
      document.dotaznik.meno.focus();
      return false;
    }
    if (lng == 'en') {
      alert('\"Name\" is an obligatory field, please enter it.');
      document.dotaznik.meno.focus();
      return false;
    }
  }
  return true;
}

function isTelefon(lng) {
  if (document.dotaznik.telefon.value == "") {
    if (lng == 'sk') {
      alert('\"Telefón\" je povinné pole, vyplote ho prosím.');
      document.dotaznik.telefon.focus();
      return false;
    }
    if (lng == 'en') {
      alert('\"Telephone\" is an obligatory field, please enter it.');
      document.dotaznik.telefon.focus();
      return false;
    }
  }
  return true;
} 
 
function winOpen(page,w,h) {
  newWindow=window.open(page,"subWin","scrollbars,statusbar=no,width="+w+",height="+h+"");
  newWindow.moveTo((((screen.width)-w)/2),(((screen.height)-h)/2));
  newWindow.focus();
}
//-->

