<!--
		var XMLHttpRequestObject;
		try {
			XMLHttpRequestObject=new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				XMLHttpRequestObject=new ActiveXObject("Microsoft.XMLHTTP");
			} catch (oc) {
				XMLHttpRequestObject=null;
			}
		}
		if(!XMLHttpRequestObject && typeof XMLHttpRequest != "undefined")
			XMLHttpRequestObject = new XMLHttpRequest();
		if (!XMLHttpRequestObject) {
			window.alert("Spiacente! Oggetto XMLHTTP non trovato. Connessione non disponibile");
		}
		//______________________________________________________________________________________
		var XMLHttpRequestObject2;
		try {
			XMLHttpRequestObject2=new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				XMLHttpRequestObject2=new ActiveXObject("Microsoft.XMLHTTP");
			} catch (oc) {
				XMLHttpRequestObject2=null;
			}
		}
		if(!XMLHttpRequestObject2 && typeof XMLHttpRequest != "undefined")
			XMLHttpRequestObject2 = new XMLHttpRequest();
		if (!XMLHttpRequestObject2) {
			window.alert("Spiacente! Oggetto XMLHTTP non trovato. Connessione non disponibile");
		}
		//______________________________________________________________________________________
		var XMLHttpRequestObject3;
		try {
			XMLHttpRequestObject3=new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				XMLHttpRequestObject3=new ActiveXObject("Microsoft.XMLHTTP");
			} catch (oc) {
				XMLHttpRequestObject3=null;
			}
		}
		if(!XMLHttpRequestObject3 && typeof XMLHttpRequest != "undefined")
			XMLHttpRequestObject3 = new XMLHttpRequest();
		if (!XMLHttpRequestObject3) {
			window.alert("Spiacente! Oggetto XMLHTTP non trovato. Connessione non disponibile");
		}
				//______________________________________________________________________________________
		var XMLHttpRequestObject4;
		try {
			XMLHttpRequestObject4=new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				XMLHttpRequestObject4=new ActiveXObject("Microsoft.XMLHTTP");
			} catch (oc) {
				XMLHttpRequestObject4=null;
			}
		}
		if(!XMLHttpRequestObject4 && typeof XMLHttpRequest != "undefined")
			XMLHttpRequestObject4 = new XMLHttpRequest();
		if (!XMLHttpRequestObject4) {
			window.alert("Spiacente! Oggetto XMLHTTP non trovato. Connessione non disponibile");
		}
	
		//______________________________________________________________________________________
		function getData(dataSource, divId,issync,ancora){
			var divId=divId;
			var ancora=ancora;
			var dataSource=dataSource;
			if (divId == "" | divId == null) {divId="content"}
			if (issync != "false") {issync="true"}
			dataSource = dataSource.replace( /[+]/g, '%2B');
			if(XMLHttpRequestObject) {
				var obj=document.getElementById(divId);
				XMLHttpRequestObject.open("GET", dataSource,issync);
				XMLHttpRequestObject.onreadystatechange=function() {
					if(XMLHttpRequestObject.readyState==4 && XMLHttpRequestObject.status=="200") {
						obj.innerHTML=XMLHttpRequestObject.responseText;
						if (ancora == "disinfezione_auto") {
							document.getElementById('scroller').style.top='-400px'
						} else if (ancora == "filtri") {
							document.getElementById('scroller').style.top='-700px'
						} else if (ancora == "disinfezione_legionella") {
							document.getElementById('scroller').style.top='-900px'
						}
					}
				}
				XMLHttpRequestObject.send(null)
			}
		}
		//______________________________________________________________________________________
		function getData2(dataSource, divId,issync){
			if (divId == "" | divId == null) {divId="dx"}
			if (issync != "false") {issync="true"}
			dataSource = dataSource.replace( /[+]/g, '%2B');
			if(XMLHttpRequestObject2) {
				var obj=document.getElementById(divId);
				XMLHttpRequestObject2.open("GET", dataSource,issync);
				XMLHttpRequestObject2.onreadystatechange=function() {
					if(XMLHttpRequestObject2.readyState==4 && XMLHttpRequestObject2.status=="200") {
						obj.innerHTML=XMLHttpRequestObject2.responseText
					}
				}
				XMLHttpRequestObject2.send(null)
			}
		}
		//______________________________________________________________________________________
		function getData3(dataSource, divId,issync){
			if (divId == "" | divId == null) {divId="dx"}
			if (issync != "false") {issync="true"}
			dataSource = dataSource.replace( /[+]/g, '%2B');
			if(XMLHttpRequestObject3) {
				var obj=document.getElementById(divId);
				XMLHttpRequestObject3.open("GET", dataSource,issync);
				XMLHttpRequestObject3.onreadystatechange=function() {
					if(XMLHttpRequestObject3.readyState==4 && XMLHttpRequestObject3.status=="200") {
						obj.innerHTML=XMLHttpRequestObject3.responseText
					}
				}
				XMLHttpRequestObject3.send(null)
			}
		}
		//______________________________________________________________________________________
		function getData4(dataSource, divId,issync){
			if (divId == "" | divId == null) {divId="homecontent"}
			if (issync != "false") {issync="true"}
			dataSource = dataSource.replace( /[+]/g, '%2B');
			if(XMLHttpRequestObject4) {
				var obj=document.getElementById(divId);
				XMLHttpRequestObject4.open("GET", dataSource,issync);
				XMLHttpRequestObject4.onreadystatechange=function() {
					if(XMLHttpRequestObject4.readyState==4 && XMLHttpRequestObject4.status=="200") {
						obj.innerHTML=XMLHttpRequestObject4.responseText
					}
				}
				XMLHttpRequestObject4.send(null)
			}
		}
		//______________________________________________________________________________________
		function showthis(mydiv,divheight) {
		// configurazione
			var myheight=0; 			// inizializzazione variabile altezza dei div
			var thisdivname=""; 		// inizializzazione variabile contenente il div scansionato nel ciclo di controllo chiusura
			var array_thisdivname=""; 	// inizializzazione array contenente tutti i div del DOM
			var counter=0; 				// inizializzazione contatore per ciclo scansione div presenti nel DOM
			var ismenu=""; 				// inizializzazione variabile contenente l'eventuale identificatore menu del div scansionato
			var idmenu="menu"; 			// identificatore mio menu
		// fine configurazione
		myheight=eval(mydiv+".style.height"); // altezza del div selezionato
		if (myheight == "1px") {
			eval(mydiv+".style.height='"+divheight+"px'");
			eval(mydiv+".style.visibility=''");
			// qui chiude gli altri div dopo l'apertura del mydiv
			var myarray=document.getElementsByTagName("div");
			for (counter=0;counter<=myarray.length-1;counter++) {
				thisdivname=myarray[counter].id;
				array_thisdivname=thisdivname.split(/_/);
				ismenu=array_thisdivname[0];
				if (ismenu == idmenu && mydiv != thisdivname) {
					eval(thisdivname+".style.height='1px'");
					eval(thisdivname+".style.visibility='hidden'")
				}
			}
		} else {
			eval(mydiv+".style.height='1px'");
			eval(mydiv+".style.visibility='hidden'")
		}
		}
//-->			

