	function DoNav(loc) {
		 var b = document.getElementsByTagName('base');
		 if (b && b[0] && b[0].href) {
		   if (b[0].href.substr(b[0].href.length-1) == '/' && loc.charAt(0) == '/')
		     lotheUrl = loc.substr(1);
		   loc = b[0].href + loc;
		 }
		 location.href = loc;
		
		//document.location.href = theUrl;
	}

	function ZobrazPole(theUrl) {
		document.getElementById('odesli').style.display='block';
	}
	
	
	
	 var email = new RegExp("^[^.]+(\.[^.]+)*@([^.]+[.])+[a-z]{2,4}$");

	 function zkontroluj(formular)
	 {
	 if ((formular.mail.value=="") || (formular.mail.value=="@"))
	 {
	 alert("E-mailovou adresu musíte vyplnit !");
	 formular.mail.focus();
	 return false;
	 }

	 if (formular.mail.value!="") {
	   if (!email.test(formular.mail.value)) {
	     alert("Zadaný e-mail neodpovídá formátu elektronické pošty (např. neco@neco.cz) !");
	     formular.mail.focus();
	     return false;
	   }
	 }   

	   return true;
	 }

	 function HideContent(d) {
		 if(d.length < 1) { return; }
		 document.getElementById(d).style.display = "none";
		 }

		 function ShowContent(d) {
		 if(d.length < 1) { return; }
		 document.getElementById(d).style.display = "";
		 }