

function ext_popup( sorgente , numero){
	
	var htmlChiudi = "<br><div id='chiudipopup'><a href='Javascript:close_ext_popup("+ numero +")'>Chiudi</a></div>";
	
	document.getElementById("ext_" + numero).style.display = "block";
	document.getElementById("ext_" + numero).style.visibility = "visible";
	document.getElementById("ext_" + numero).innerHTML =  sorgente + "<br>Loading ..." + htmlChiudi;
	
	var xmlhttp = null;
	if (window.ActiveXObject) {
		if (navigator.userAgent.toLowerCase().indexOf("msie 5") != -1) {
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} else {
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
	}
	
	if (!xmlhttp && typeof(XMLHttpRequest) != 'undefined') {
		xmlhttp = new XMLHttpRequest()
	}
	
	xmlhttp.open("GET", "../catalogo_espositori/CATESP_risultatidett.asp?"+ sorgente, false);
	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4) {
			document.getElementById("ext_" + numero).innerHTML = xmlhttp.responseText + htmlChiudi;
		}
	}
	xmlhttp.send(null);
}

function close_ext_popup(numero){
	document.getElementById("ext_" + numero).style.display = "none";
	document.getElementById("ext_" + numero).style.visibility = "hidden";
}





function ext_popup_new( sorgente , numero){
	
	var htmlChiudi = "";
	
	//nascondo il tag <a> della ragione sociale e il tag <a> delle iconcine
	document.getElementById("RAG_SOC_" + numero).style.display = "none";
	document.getElementById("RAG_SOC_" + numero).style.visibility = "hidden";	
	document.getElementById("AREE_ESP_" + numero).style.display = "none";
	document.getElementById("AREE_ESP_" + numero).style.visibility = "hidden";	
	document.getElementById("MORE_INFO_" + numero).style.display = "none";
	document.getElementById("MORE_INFO_" + numero).style.visibility = "hidden";	

	
	document.getElementById("ext_" + numero).style.display = "block";
	document.getElementById("ext_" + numero).style.visibility = "visible";
	document.getElementById("ext_" + numero).innerHTML =  sorgente + "<br>Loading ..." + htmlChiudi;
	
	var xmlhttp = null;
	if (window.ActiveXObject) {
		if (navigator.userAgent.toLowerCase().indexOf("msie 5") != -1) {
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} else {
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
	}
	
	if (!xmlhttp && typeof(XMLHttpRequest) != 'undefined') {
		xmlhttp = new XMLHttpRequest()
	}

xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4) {
			document.getElementById("ext_" + numero).innerHTML = "<br/>" + xmlhttp.responseText + htmlChiudi;
		}
	}
	xmlhttp.open("GET", "../base/catalogo_espositori/CATAL_macro_micro/catesp_risultatidett.asp?COD=" + numero + "&" + sorgente, true);
	
	if (xmlhttp.readyState == 4) {
		if (http_request.status == 200) {
			// perfetto!
			// tutto a posto, la risposta è stata ricevuta
			document.getElementById("ext_" + numero).innerHTML = "<br/>" + xmlhttp.responseText + htmlChiudi;
		} 
	}

	xmlhttp.send(null);
}

function ext_popup_new_micro( sorgente , numero){
	
	var htmlChiudi = "";
	
	//nascondo il tag <a> della ragione sociale e il tag <a> delle iconcine
	document.getElementById("RAG_SOC_" + numero).style.display = "none";
	document.getElementById("RAG_SOC_" + numero).style.visibility = "hidden";	
	document.getElementById("AREE_ESP_" + numero).style.display = "none";
	document.getElementById("AREE_ESP_" + numero).style.visibility = "hidden";	
	document.getElementById("MORE_INFO_" + numero).style.display = "none";
	document.getElementById("MORE_INFO_" + numero).style.visibility = "hidden";	

	
	document.getElementById("ext_" + numero).style.display = "block";
	document.getElementById("ext_" + numero).style.visibility = "visible";
	document.getElementById("ext_" + numero).innerHTML =  sorgente + "<br>Loading ..." + htmlChiudi;
	
	var xmlhttp = null;
	if (window.ActiveXObject) {
		if (navigator.userAgent.toLowerCase().indexOf("msie 5") != -1) {
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} else {
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
	}
	
	if (!xmlhttp && typeof(XMLHttpRequest) != 'undefined') {
		xmlhttp = new XMLHttpRequest()
	}

xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4) {
			document.getElementById("ext_" + numero).innerHTML = "<br/>" + xmlhttp.responseText + htmlChiudi;
		}
	}
	xmlhttp.open("GET", "../base/catalogo_espositori/CATAL_micro/catesp_risultatidett.asp?COD=" + numero + "&" + sorgente, true);
	
	if (xmlhttp.readyState == 4) {
		if (http_request.status == 200) {
			// perfetto!
			// tutto a posto, la risposta è stata ricevuta
			document.getElementById("ext_" + numero).innerHTML = "<br/>" + xmlhttp.responseText + htmlChiudi;
		} 
	}

	xmlhttp.send(null);
}

function close_ext_popup_new(numero){
	document.getElementById("ext_" + numero).style.display = "none";
	document.getElementById("ext_" + numero).style.visibility = "hidden";
	//mostro il tag <a> della ragione sociale e il tag <a> delle iconcine
	document.getElementById("RAG_SOC_" + numero).style.display = "block";
	document.getElementById("RAG_SOC_" + numero).style.visibility = "visible";
	document.getElementById("AREE_ESP_" + numero).style.display = "block";
	document.getElementById("AREE_ESP_" + numero).style.visibility = "visible";	
	document.getElementById("MORE_INFO_" + numero).style.display = "block";
	document.getElementById("MORE_INFO_" + numero).style.visibility = "visible";	
	
}



