<!--
// nastavi prvo izbiro v seznamu
function ShowHideSection(Section) {
  if (document.getElementById(Section).style.display == "block") {
    document.getElementById(Section).style.display = "none"
  } else {
  	if (document.getElementById(Section).style.display == "none") {
   		document.getElementById(Section).style.display = "block"
  	}		  
  }
}	
//-->