function control(){
    var jmeno, adresa, rc, email;
    jmeno = document.getElementById("customer_name"); 
    adresa = document.getElementById("customer_address"); 
    rc = document.getElementById("customer_rc"); 
    email = document.getElementById("customer_email");
    if (jmeno.value==""){
    	alert("Prosím vyplňte Vaše jméno");
    	return false;
    }
    if (!jmeno.value){
    	alert("Prosím vyplňte Vaše jméno");
    	return false;
    }
    if (!adresa.value){
    	alert("Prosím vyplňte Vaši adresu");
    	return false;
    }
    if (!email.value){
    	alert("Prosím vyplňte Váš email");
    	return false;
    }
    if (!email.value.match('^[a-z0-9%_.-]*@[a-z0-9.-]*\.[a-z]{2,5}$')){
    	alert("Zadaný email nemá platný formát");
    	return false;
    }
    return true;
}


function openWindow(odkaz) {
	window.open(odkaz,'Okno','toolbar=0,location=0,scrollbars=1,width=620,height=620,resizable=1,top=20,left=0');
}

function addMezera(nStr)
{
	nStr += '';
	x = nStr.split('.');
	x1 = x[0];
	x2 = x.length > 1 ? '.' + x[1] : '';
	var rgx = /(\d+)(\d{3})/;
	while (rgx.test(x1)) {
		x1 = x1.replace(rgx, '$1' + ' ' + '$2');
	}
	return x1 + x2;
}
