function set_lingua(lingua)  {
	var mioObj;
	function CallBack() { // si occupa di gestire la risposta del server
	   if (mioObj.readyState==4 || mioObj.readyState=="complete"){ 
	      document.getElementById("dummy").innerHTML = mioObj.responseText;
		  location.reload();
	   } else {
	      document.getElementById("dummy").innerHTML = "loading..."
	   }
	} 
	mioObj = crea_istanzaXHRObj();
	if (mioObj==null){
		alert ("Browser does not support HTTP Request")
	} else {
		mioObj.onreadystatechange = CallBack;
		mioObj.open("GET","lingua.asp?lingua="+lingua,true)
		mioObj.send(null)
	}
}

function crea_istanzaXHRObj() { 
   // istanza oggetto XMLHttpRequest
   var istanzaXHRObj=null;
   if (window.XMLHttpRequest) { // Mozzilla, Safari, ...
      istanzaXHRObj=new XMLHttpRequest();
   }
   else if (window.ActiveXObject)  { // IE
      try {
	      istanzaXHRObj=new ActiveXObject("Msxml2.XMLHTTP")
	  } catch(e) {
	      try {
		      istanzaXHRObj=new ActiveXObject("Microsoft.XMLHTTP")
		  } catch(e) {
	  	}
	  }
   }
   return istanzaXHRObj
}

function pop(url,w,h) {
   l=((screen.width-w)/2);
   t=((screen.height-h)/2);
   w=w-11;
   h=h-58;
   dimensioni="width="+w+",height="+h+",left="+l+",top="+t+",";
   parametri="directory=yes, location=no, menubar=no, resizable=no, scrollbars=no, status=no, toolbar=no, fullscreen=no";
   window.open(url,"sepopup",dimensioni+parametri);
}
