<!--

function OW_openBrWindow(theUrl, winName, features){
secondWindow=window.open(theUrl, winName, features);
}

function CheckForNull (theForm) {

  if ((theForm.Prodejce.value == "") ||
     (theForm.Firma.value == "") ||
     (theForm.Kontakt.value == "") ||
     (theForm.Ulice.value == "") ||
     (theForm.Mesto.value == "") ||
     (theForm.PSC.value == "") ||
     (theForm.Telefon.value == ""))
  {
    alert("Prosím, vyplňte údaje označené hvězdičkou.");
    theForm.Prodejce.focus();
    return false;
  }
  return true; 
}

//-->