<!--

function OW_openBrWindow(theUrl, winName, features){
secondWindow=window.open(theUrl, winName, features);
}

function CheckForNull (theForm) {

  if ((theForm.ojmeno.value == "") ||
     (theForm.shipmail.value == "") ||
     (theForm.shiptel.value == ""))
  {
    alert("Prosím, vyplňte tučně vyznačené údaje.");
    theForm.ojmeno.focus();
    return false;
  }
  return true; 
}

//-->