<!--
var readyState =	{
						UNINITIALIZED	: 0,
						OPEN			: 1,
						SENT			: 2,
						RECEIVING		: 3,
						LOADED 			: 4
					};

var statusText = new Array();

statusText[100] = "Continue";
statusText[101] = "Switching Protocols";
statusText[200] = "OK";
statusText[201] = "Created";
statusText[202] = "Accepted";
statusText[203] = "Non-Authoritative Information";
statusText[204] = "No Content";
statusText[205] = "Reset Content";
statusText[206] = "Partial Content";
statusText[300] = "Multiple Choices";
statusText[301] = "Moved Permanently";
statusText[302] = "Found";
statusText[303] = "See Other";
statusText[304] = "Not Modified";
statusText[305] = "Use Proxy";
statusText[306] = "(unused, but reserved)";
statusText[307] = "Temporary Redirect";
statusText[400] = "Bad Request";
statusText[401] = "Unauthorized";
statusText[402] = "Payment Required";
statusText[403] = "Forbidden";
statusText[404] = "Not Found";
statusText[405] = "Method Not Allowed";
statusText[406] = "Not Acceptable";
statusText[407] = "Proxy Authentication Required";
statusText[408] = "Request Timeout";
statusText[409] = "Conflict";
statusText[410] = "Gone";
statusText[411] = "Length Required";
statusText[412] = "Precondition Failed";
statusText[413] = "Request Entity Too Large";
statusText[414] = "Request-URI Too Long";
statusText[415] = "Unsupported Media Type";
statusText[416] = "Requested Range Not Satisfiable";
statusText[417] = "Expectation Failed";
statusText[500] = "Internal Server Error";
statusText[501] = "Not Implemented";
statusText[502] = "Bad Gateway";
statusText[503] = "Service Unavailable";
statusText[504] = "Gateway Timeout";
statusText[505] = "HTTP Version Not Supported";
statusText[509] = "Bandwidth Limit Exceeded";

var strLastPageContent = "";

var strWaiting	=	"<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\">"
				+	"	<tr>"
				+	"		<td valign=\"top\" class=\"bkgNORepeat\" background=\"../__templateProvinciale/images/FotoChiDoveDettaglio03.jpg\" width=\"420\" height=\"473\">"
				+	"			<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"420\">"
				+	"				<tr><td colspan=\"3\"><img src=\"../__templateProvinciale/images/dummy.gif\" width=\"1\" height=\"71\" alt=\"\" border=\"0\"></td></tr>"
				+	"				<tr>"
				+	"					<td><img src=\"../__templateProvinciale/images/dummy.gif\" width=\"31\" height=\"1\" alt=\"\" border=\"0\"></td>"
				+	"					<td width=\"100%\" class=\"grigio11n\" valign=\"top\">"
				+	"						<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\">"
				+	"							<tr>"
				+	"								<td class=\"nero11n\" valign=\"top\">loading...&nbsp;</td>"
				+	"								<td width=\"99%\" valign=\"top\"><img src=\"../__templateProvinciale/images/loading.gif\" border=\"0\"></td>"
				+	"							</tr>"
				+	"						</table>"
				+	"					</td>"
				+	"					<td><img src=\"../__templateProvinciale/images/dummy.gif\" width=\"35\" height=\"1\" alt=\"\" border=\"0\"></td>"
				+	"				</tr>"
				+	"			</table>"
				+	"		</td>"
				+	"	</tr>"
				+	"</table>";

function getLastPageContent()
{
	var pElement = document.getElementById("divCampionato");
	pElement.innerHTML = strLastPageContent;
}

function getXMLHttpRequest()
{
	var browserUtente = navigator.userAgent.toUpperCase();

	if (typeof(XMLHttpRequest) === "function" || typeof(XMLHttpRequest) === "object")
		return new XMLHttpRequest();
	else if (window.ActiveXObject && browserUtente.indexOf("MSIE 4") < 0 )
	{
		if(browserUtente.indexOf("MSIE 5") < 0)
			return new ActiveXObject("Msxml2.XMLHTTP");
		else
			return new ActiveXObject("Microsoft.XMLHTTP");
	}

	return null;
}

function loadCampionato(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataCampionato.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divCampionato");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
					strLastPageContent = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}

function loadSquadre(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataSquadre.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divCampionato");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}

function getCampionato(pstrComitato, pstrCampionato, pstrFase, pintGirone, pintAR, pintTurno)
{
	var pElement = document.getElementById("divCampionato");
	pElement.innerHTML = "<table width=\"100%\" height=\"400\"><tr><td class=\"nero11n\" valign=\"top\">loading...&nbsp;</td><td width=\"99%\" valign=\"top\"><img src=\"../__templateProvinciale/images/loading.gif\" border=\"0\"></td></tr></table>";
	
	setTimeout("loadCampionato('com=" + pstrComitato + "&camp=" + pstrCampionato + "&fase=" + pstrFase + "&girone=" + pintGirone + "&ar=" + pintAR + "&turno=" + pintTurno + "')", 10);
	//loadProductCard(intDiv, "IDCorso=" + intCorso);
	
}

function getSquadre(pstrComitato, pstrCampionato, pstrFase, pintGirone, pintAR, pintTurno)
{
	var pElement = document.getElementById("divCampionato");
	pElement.innerHTML = "<table width=\"100%\" height=\"400\"><tr><td class=\"nero11n\" valign=\"top\">loading...&nbsp;</td><td width=\"99%\" valign=\"top\"><img src=\"../__templateProvinciale/images/loading.gif\" border=\"0\"></td></tr></table>";
	
	setTimeout("loadSquadre('com=" + pstrComitato + "&camp=" + pstrCampionato + "&fase=" + pstrFase + "&girone=" + pintGirone + "&ar=" + pintAR + "&turno=" + pintTurno + "')", 10);
	//loadProductCard(intDiv, "IDCorso=" + intCorso);
	
}

function getClassifica(pstrComitato, pstrCampionato, pstrFase, pintGirone, pintAR, pintTurno)
{
	var pElement = document.getElementById("divCampionato");
	pElement.innerHTML = "<table width=\"100%\" height=\"400\"><tr><td class=\"nero11n\" valign=\"top\">loading...&nbsp;</td><td width=\"99%\" valign=\"top\"><img src=\"../__templateProvinciale/images/loading.gif\" border=\"0\"></td></tr></table>";
	
	setTimeout("loadClassifica('com=" + pstrComitato + "&camp=" + pstrCampionato + "&fase=" + pstrFase + "&girone=" + pintGirone + "&ar=" + pintAR + "&turno=" + pintTurno + "')", 10);
	//loadProductCard(intDiv, "IDCorso=" + intCorso);
	
}

function loadClassifica(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataClassifica.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divCampionato");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}

function getInfo(pstrComitato, pstrCampionato, pstrFase, pintGirone, pintAR, pintTurno, pstrGara)
{
	var pElement = document.getElementById("divCampionato");
	pElement.innerHTML = "<table width=\"100%\" height=\"400\"><tr><td class=\"nero11n\" valign=\"top\">loading...&nbsp;</td><td width=\"99%\" valign=\"top\"><img src=\"../__templateProvinciale/images/loading.gif\" border=\"0\"></td></tr></table>";
	
	setTimeout("loadInfo('com=" + pstrComitato + "&camp=" + pstrCampionato + "&fase=" + pstrFase + "&girone=" + pintGirone + "&ar=" + pintAR + "&turno=" + pintTurno + "&gara=" + pstrGara + "')", 10);
	//loadProductCard(intDiv, "IDCorso=" + intCorso);
	
}

function loadInfo(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataInfo.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divCampionato");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}

function getCerca(pstrArbitro, pstrComitato, pstrFase)
{
	var pElement = document.getElementById("divCampionato");
	pElement.innerHTML = "<table width=\"100%\" height=\"400\"><tr><td class=\"nero11n\" valign=\"top\">loading...&nbsp;</td><td width=\"99%\" valign=\"top\"><img src=\"../__templateProvinciale/images/loading.gif\" border=\"0\"></td></tr></table>";
	
	setTimeout("loadCerca('com=" + pstrComitato + "&arbitro=" + pstrArbitro + "&Fase=" + pstrFase + "')", 10);
	//loadProductCard(intDiv, "IDCorso=" + intCorso);
	
}

function loadCerca(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataCerca.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divCampionato");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}


//--- INIZIO CHI DOVE ----
function getComponente(pintID)
{
	var pElement = document.getElementById("divContenuto");
	pElement.innerHTML = strWaiting;
	
	setTimeout("loadComponente('ID=" + pintID + "')", 10);
}

function loadComponente(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataComponente.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divContenuto");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}

function getUfficio(pintID)
{
	var pElement = document.getElementById("divContenuto");
	pElement.innerHTML = strWaiting;
	
	setTimeout("loadUfficio('ID=" + pintID + "')", 10);
}

function loadUfficio(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataUfficio.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divContenuto");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}

function getStatuto(pintID)
{
	var pElement = document.getElementById("divContenuto");
	pElement.innerHTML = strWaiting;
	
	setTimeout("loadStatuto('ID=" + pintID + "')", 10);
}

function loadStatuto(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataStatuto.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divContenuto");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}

function getGiustizia(pintID)
{
	var pElement = document.getElementById("divContenuto");
	pElement.innerHTML = strWaiting;
	
	setTimeout("loadGiustizia('ID=" + pintID + "')", 10);
}

function loadGiustizia(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataGiustizia.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divContenuto");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}

function getComunicati(pintID)
{
	var pElement = document.getElementById("divContenuto");
	pElement.innerHTML = strWaiting;
	
	setTimeout("loadComunicati('ID=" + pintID + "')", 10);
}

function loadComunicati(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataComunicato.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divContenuto");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}
//--- FINE CHI DOVE ----

//--- INIZIO Calendario ---
function getTitleEvento(pstrData)
{
	//var pElement = document.getElementById("divTitle");
	//pElement.innerHTML = strWaiting;
	
	setTimeout("loadTitleEvento('Data=" + pstrData + "')", 10);
}

function loadTitleEvento(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("GET", "AjaxGetDataTitoloEvento.asp?" + pstrParams, true);

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				var pElement = document.getElementById("divTitle");
				
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					pElement.innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					pElement.innerHTML = "Server error: " + statusText[objXMLHttpRequest.status];
				}
			} 
		}

		objXMLHttpRequest.send(null);
	}
	else
		return false;
}
//--- FINE Calendario ---


//--- INZIO VIDEO ---
function fnAjaxLoadVideo(pstrParams)
{
	arrVideoInfo.length = 0;
	
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("POST", "AjaxGetVideoInfo.asp", true);
		objXMLHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					eval(objXMLHttpRequest.responseText)
					
					document.getElementById("didaVideo").innerHTML = arrVideoInfo[0];
					
					if(arrVideoInfo[1]		!= "")	{ document.getElementById("player").innerHTML = fnFormatStrForHTML(arrVideoInfo[1]); }
					else if(arrVideoInfo[2] != "")	{ document.getElementById("player").innerHTML = "<div id=\"playerContainer\"></div>"; loadVideoUrl(arrVideoInfo[2]); }
					else if(arrVideoInfo[3] != "")	{ document.getElementById("player").innerHTML = "<div id=\"playerContainer\"></div>"; loadVideoFile(arrVideoInfo[3]); }
				}
				else
				{
					alert("Server error: " + statusText[objXMLHttpRequest.status])
				}
			} 
		}

		objXMLHttpRequest.send(pstrParams);
	}
	else
		return false;
}

function fnAjaxLoadGallery(pstrParams)
{
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("POST", "AjaxGetVideoPaginazione.asp", true);
		objXMLHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					document.getElementById("divGallery").innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					alert("Server error: " + statusText[objXMLHttpRequest.status])
				}
			} 
		}

		objXMLHttpRequest.send(pstrParams);
	}
	else
		return false;
}

function AjaxGoToPage ( pintLastPage, pintValue )
{
	pintValue = Number ( isNull ( pintValue, -1 ) );
	
	var intPageToGo = 0;
	
	if ( pintValue == -1 )
	{
		intPageToGo = Number ( document.forms["mainForm"].elements["PageToGo"].value );
		
		if ( isNaN ( intPageToGo ) || ( intPageToGo < 1 ) )
			intPageToGo = 1;
		
		if ( intPageToGo > pintLastPage )
			intPageToGo = pintLastPage;

		document.forms["mainForm"].elements["Page"].value = intPageToGo;
		
		fnAjaxLoadGallery("IDGalleryEveneto=" + intIDGalleryEvento + "&Page=" + intPageToGo);
	}
	else
	{
		var intFromPage = Number ( document.forms["mainForm"].elements["Page"].value );
		
		if ( ( pintValue > 0 ) && ( pintValue < ( pintLastPage + 1 ) ) )
		{
			intPageToGo = pintValue;
			
			if ( intPageToGo != intFromPage )
			{
				document.forms["mainForm"].elements["Page"].value = intPageToGo;
				fnAjaxLoadGallery("IDGalleryEveneto=" + intIDGalleryEvento + "&Page=" + intPageToGo);
			}
		}
	}
}
//--- FINE VIDEO ---

//--- INZIO FUNZIONI PER MAPPE ---
function fnAjaxLoadPunti(pstrParams)
{
	arrPoint.length = 0;
	objMap.clearOverlays();
	document.getElementById("divLoading").style.display = "block";
	
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("POST", "AjaxCIAGetPuntiMappa.asp", true);
		objXMLHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					eval(objXMLHttpRequest.responseText)
					
					fnDrawPoint();
					/*document.getElementById("didaVideo").innerHTML = arrVideoInfo[0];
					
					if(arrVideoInfo[1]		!= "")	{ document.getElementById("player").innerHTML = fnFormatStrForHTML(arrVideoInfo[1]); }
					else if(arrVideoInfo[2] != "")	{ document.getElementById("player").innerHTML = "<div id=\"playerContainer\"></div>"; loadVideoUrl(arrVideoInfo[2]); }
					else if(arrVideoInfo[3] != "")	{ document.getElementById("player").innerHTML = "<div id=\"playerContainer\"></div>"; loadVideoFile(arrVideoInfo[3]); }*/
				}
				else
				{
					alert("Server error: " + statusText[objXMLHttpRequest.status])
				}
			} 
		}

		objXMLHttpRequest.send(pstrParams);
	}
	else
		return false;
}

function fnAjaxLoadInfo(pstrParams)
{	
	var objXMLHttpRequest = getXMLHttpRequest();
	
	if (objXMLHttpRequest)
	{
		objXMLHttpRequest.open("POST", "AjaxCIAGetInfo.asp", true);
		objXMLHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

		objXMLHttpRequest.onreadystatechange = function()
		{
			if (objXMLHttpRequest.readyState == readyState.LOADED)
			{
				if (statusText[objXMLHttpRequest.status] == "OK")
				{
					document.getElementById("info").innerHTML = objXMLHttpRequest.responseText;
				}
				else
				{
					alert("Server error: " + statusText[objXMLHttpRequest.status])
				}
			} 
		}

		objXMLHttpRequest.send(pstrParams);
	}
	else
		return false;
}

function AjaxGoToPageCIA ( pintLastPage, pintValue, pstrIDRegione )
{
	var intPageToGo = 0;

	var intFromPage = Number ( document.forms["mainForm"].elements["Page"].value );

	intPageToGo = pintValue;
		
	if ( intPageToGo != intFromPage )
	{
		document.forms["mainForm"].elements["Page"].value = intPageToGo;
		fnAjaxLoadInfo("IDRegione=" + pstrIDRegione + "&Page=" + intPageToGo);
	}
}
//--- FINE FUNZIONI PER MAPPE ---

//--> 