<!--
var combobox_open = false;
var choosed_id = 0;

window.onload=function(){
if(document.getElementsByTagName && document.getElementById){
    //document.getElementById("nav").className="jsenable";
	    document.onclick = function()
		{
		    var oDiv = document.getElementById("combobox").getElementsByTagName("div");
		    if (oDiv[0].className == "show" && combobox_open) {
			 oDiv[0].className="hide";
			}
			combobox_open = true;
		};	
    }
}

function openclose(){
  var oDiv = document.getElementById("combobox").getElementsByTagName("div");
  
  if (oDiv[0].className == "hide") {
    combobox_open = false;
  }
  
  oDiv[0].className=(oDiv[0].className=="show") ? "hide" : "show";
}


function setindex(x,testo){
  choosed_id = x;
  var oDiv = document.getElementById("combobox").getElementsByTagName("div");
  oDiv[0].className="hide";
  
  //var oDiv = document.getElementById("combobox").getElementsByTagName("li");
  //var oA = oDiv[x].getElementsByTagName("a");
  //var oA = document.getElementById("combobox").getElementsByTagName("a");
  document.getElementById("caption").innerHTML=testo;
  
}

function enter_savian(){

    switch(choosed_id)
	{
	case 0:
	  window.location = "index_ita.html";
	break
	case 1:
	  window.location = "index_eng.html";
	break
	case 2:
	  window.location = "index_deu.html";
	break
	default:
	  window.location = "index_ita.html";
	break
	}
	
}

function enter_postumia(){

    switch(choosed_id)
	{
	case 0:
	  window.location = "postumiavini/index_ita.html";
	break
	case 1:
	  window.location = "postumiavini/index_eng.html";
	break
	case 2:
	  window.location = "postumiavini/index_deu.html";
	break
	default:
	  window.location = "postumiavini/index_ita.html";
	break
	}
	
}


//-->










