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 = "<%=mioDominioRemoto%>" + 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", "popup_riminiwellness.asp?ext_url=" + 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";
}

