
 function checkEmail(){
    re = new RegExp("^[_a-zA-Z0-9\.\-]+@[_a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,4}$");
    if (!re.test(document.getElementById("email").value)) {
      window.alert("Emailová adresa nemá správný formát / The email adress is invalid");
      return false;
    } else {
    return true;
    }
}

function showImage(img,xwidth,yheight){

  var winl = (screen.width - xwidth) / 2;
  var wint = (screen.height - yheight) / 2;
  var a = window.open("","new","left="+winl+",top="+wint+",width="+xwidth+",height="+yheight);

  if (parseInt(navigator.appVersion) >= 4) { a.window.focus(); }

  a.document.writeln('<html>');
  a.document.writeln('<head><title>Velký náhled</title></head>');
  a.document.writeln('<body style="margin:0;padding:0;">');
  a.document.writeln('<a href="#" onclick="window.close();"><img src="'+img+'" border="0" width="'+xwidth+'" height="'+yheight+'" alt="klikni pro zavření okna"></a>');
  a.document.writeln('</body>');
  a.document.writeln('</html>');
  a.document.close();
}

function showProduct(img,xwidth,yheight,iname,iorder,ides){

  var winl = (screen.width - xwidth) / 2;
  var wint = (screen.height - yheight) / 2;
  var a = window.open("","new","left="+winl+",top="+wint+",width="+xwidth);

  if (parseInt(navigator.appVersion) >= 4) { a.window.focus(); }

  a.document.writeln('<html>');
  a.document.writeln('<head><title>Velký náhled</title></head>');
  a.document.writeln('<body style="margin:0;padding:0;">');
  a.document.writeln('<p style="color:#3b8093; font-weight:bold; font-size:12px;">'+iname+'<br />'+iorder+'</p>');
  a.document.writeln('<a href="#" onclick="window.close();"><img src="'+img+'" border="0" width="'+xwidth+'" height="'+yheight+'" alt="klikni pro zavření okna"></a>');
  a.document.writeln('<p style="color:#666666; font-weight:bold; font-size:11px;">'+ides+'</p>');
  a.document.writeln('</body>');
  a.document.writeln('</html>');
  a.document.close();
}

function controlOrder(){

RadioChecked = false;
	if (document.order.platba.length){
		for (var i=0; i < document.order.doprava.length; i++){
			if(document.order.doprava[i].checked){RadioChecked = true}
	        }
		if(!RadioChecked){alert("Zadejte způsob dopravy.");return false}
		RadioChecked = false;
		for (var i=0; i < document.order.platba.length; i++){
			if(document.order.platba[i].checked){RadioChecked = true}
	        }
		if(!RadioChecked){alert("Zadejte způsob platby.");return false}
	}

  return true
}

function controlCondition(){

if(document.objednavka.podminky.checked){

return true;

} else {

window.alert("Musíte souhlasit s obchodními podmínkami.");
return false;
}
}

function hideForm(platba){

 if(platba=='faktura'){
 document.getElementById("transport").style.display="";
 document.getElementById("dop").style.display="none";
 document.getElementById("osobni").style.display="none";
  document.order.doprava[0].checked=false;
 }
 
 if(platba=='dobirka'){
 document.getElementById("transport").style.display="";
 document.getElementById("dop").style.display="none";
 document.getElementById("osobni").style.display="none";
 document.order.doprava[0].checked=false;
 }
 
 if(platba=='hotovost'){
 document.getElementById("transport").style.display="none";
 document.getElementById("dop").style.display="none";
 document.getElementById("osobni").style.display="";
 document.order.doprava[0].checked=true;
 }

}

