<!--

function CheckForNull (theForm) {

  if ((theForm.jmeno.value == "") ||
     (theForm.ulice.value == "") ||
     (theForm.misto.value == ""))
  {
    alert("Prosím, vyplòte povinné údaje v adrese objednatele.");
    theForm.jmeno.focus();
    return false;
  }
  return true; 
}

function CheckForNull2 (theForm) {

  if ((theForm.jmeno.value == "") ||
     (theForm.ulice.value == "") ||
     (theForm.misto.value == ""))
  {
    alert("Prosím, zvolte dopravu a vyplòte povinné údaje v adrese objednatele.");
    theForm.jmeno.focus();
    return false;
  }
  return true; 
}

function CheckForNull3 (theForm) {

  if ((theForm.jmeno.value == "") ||
     (theForm.ulice.value == "") ||
     (theForm.misto.value == "") ||
     (theForm.email.value == ""))
  {
    alert("Prosím, vyplòte povinné údaje.");
    theForm.jmeno.focus();
    return false;
  }
  return true; 
}

function OW_openBrWindow(theUrl, winName, features){
secondWindow=window.open(theUrl, winName, features);
}



function pr1(form_1) {
var total = 0
var celkem = form_1.celkemuhradadoprava.value;
	var cena = 69;   
	total = celkem-(-cena); 
		with(document.form_1) {
		all.total.innerText = total
		}
}

function pr2(form_1) {
var total = 0
var celkem = form_1.celkemuhradadoprava.value;

	var cena = 99;   
	total = celkem-(-cena); 
		with(document.form_1) {
		all.total.innerText = total
		}
}




//-->
