<!--
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("navi");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

function validate() //kontrola formularu
{
	if(document.formular.name.value=="")
	{
		alert("Jméno - údaj nebyl zadán.");
		document.formular.name.focus();
		return(false);
	}
	if(document.formular.company.value=="")
	{
		alert("Firma - údaj nebyl zadán.");
		document.formular.company.focus();
		return(false);
	}
	txt=new RegExp("^[^.]+(\.[^.]+)*@([^.]+[.])+[a-z]{2,4}$");
	if(!txt.test(document.formular.email.value)) { 
		alert("E-mail - údaj nebyl zadán, nebo nemá platný formát."); 
		document.formular.email.focus(); 
           		return false; } 
	if(document.formular.question.value=="")
	{
		alert("Dotaz - údaj nebyl zadán.");
		document.formular.question.focus();
		return(false);
	}
	else { return(true); }
}
//-->
