function nakup() {
 window.navigate( "/");
}


function formcontrol() {
s = new String;

check=true;
	f=document.getElementById('formular');
	s = f.email1.value;
	if (s.indexOf("@")<=0 || s.indexOf(".")<=0) { 
		window.alert("Nezadán nebo chybný e-mail");
		check=false;
		}
 
	if (f.dodJmeno.value.length<2 && check==true) { 
		window.alert("Jméno musí obsahovat alespoň 2 znaky");
		check=false;
		}
	if (f.dodPrijmeni.value.length<2 && check==true) { 
		window.alert("Přijmení musí obsahovat alespoň 2 znaky");
		check=false;
		}
	if (f.dodUlice.value.length<2 && check==true) { 
		window.alert("Ulice musí obsahovat alespoň 2 znaky");
		check=false;
		}
	if (f.dodMesto.value.length<2 && check==true) { 
		window.alert("Město musí obsahovat alespoň 2 znaky");
		check=false;
		}
	if (f.dodPSC.value.length<5 && check==true) { 
		window.alert("PSČ musí obsahovat alespoň 5 znaků");
		check=false;
		}
	if (f.dodTelefon.value.length<9 && check==true) { 
		window.alert("Telefon musí obsahovat alespoň 9 znaků");
		check=false;
		}

	f.cart_action.value = "save_offer";
		
	if (check==true) {f.submit()};		
}

function vymaz() {
	f=document.getElementById('formular');
//	f.action="index.php?page=cart_process&action=Vymaž košík";
	f.cart_action.value = "clear_cart";

	f.submit();
}

function recount() {
	f=document.getElementById('formular');
	f.cart_action.value = "recount";
	f.submit();
}

function del_product(id) {
	f=document.getElementById('formular');
	f.cart_action.value="del_product"+id;
	f.submit();
}

function k_obj() {
	$.scrollTo($('#dopravaaplatba'), 800);
	
}

