
				
				function HighLite(varID) {
				document.getElementById(varID).style.background = '#004877';
				document.getElementById(varID).style.filter = 'alpha (opacity=35)';
				document.getElementById(varID).style.MozOpacity='0.35';
				
				<!--document.getElementById(varID).style.background = 'url(/images/template/menuBGactive.jpg)';-->
				
				
				}
				
				function unHighLite(varID) {
				
				<!--document.getElementById(varID).style.background = 'url(/images/template/menuBGstatic.jpg)';-->
				document.getElementById(varID).style.background = 'none';
				document.getElementById(varID).style.filter = 'alpha (opacity=100)';
				document.getElementById(varID).style.MozOpacity='1';
				
				}
				
				
				
				<!-- Hide from older browsers
					
				//Check the enquiry form is filled in correctly
				function CheckForm () { 
				
					//Initialise variables
					var errorMsg = "";
				
					//Check for a first name
					if (document.frmEnquiry.firstName.value == ""){
						errorMsg += "\n\tIme \t- Unesite Vaše ime";	
					}
					
					//Check for a last name
					if (document.frmEnquiry.lastName.value == ""){
						errorMsg += "\n\tPrezime \t- Unesite Vaše prezime";
					}
					
					
						
					//Check for an e-mail address and that it is valid
					if ((document.frmEnquiry.email.value == "") || (document.frmEnquiry.email.value.length > 0 && (document.frmEnquiry.email.value.indexOf("@",0) == - 1 || document.frmEnquiry.email.value.indexOf(".",0) == - 1))) { 
						errorMsg += "\n\tE-mail adresa \t- Unesite e-mail adresu";
					}
					
					
							
					//Check for an enquiry
					if (document.frmEnquiry.enquiry.value == "") { 
						errorMsg += "\n\tPoruka \t\t- Unesite poruku";
					}
						
					//If there is aproblem with the form then display an error
					if (errorMsg != ""){
						msg = "______________________________________________________________\n\n";
						msg += "Kontakt obrazac nemoze biti poslan.\n";
						//msg += "Ispravite ili unesite vrijednosti u sljedeca polja.\n";
						msg += "______________________________________________________________\n\n";
						msg += "Ispravite ili unesite vrijednosti u sljedecim poljima: -\n";
						
						errorMsg += alert(msg + errorMsg + "\n\n");
						return false;
					}
					
					return true;
				}
				// -->