
var xmlHttp = getXmlHttpObject();


function italia(id,tipo,subtipo)
{
		xmlHttp.open('GET', 'italia_ajax.php?id='+id+'&tipo='+tipo+'&sub='+subtipo, true);
		xmlHttp.onreadystatechange = stateChangedsoy4; 
													
		xmlHttp.send(null);
}




function stateChangedsoy4() 
{

	if(xmlHttp.readyState == 4) 
	{
	
		//Stato OK
		if (xmlHttp.status == 200) 
		{
			
			var risp = xmlHttp.responseText;
	
			if(risp!="")
			{
				risp=risp.replace(/^\s*/gi,"");

			
				var values = risp.split('|');

				
				document.getElementById('cariche_regione').innerHTML=values[0];
				document.getElementById('cariche_provincia').innerHTML=values[1];
				
				
			}
			
		} 
		else 
		{
			alert(xmlHttp);
		}
	}
}


function getXmlHttpObject()
{
  var xmlHttp=null;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    }
  return xmlHttp;
}

