
var x;


function clicca(a) {
	newContaClick(a);
	oldContaClick(a);
	//alert('Stai uscendo da RomaExplorer per andare verso '+a);
	//x = a;
	//apri(x);
}

/*
function apri(b){
if (b != "") {
alert('Stai uscendo da RomaExplorer.');
var u = "http://www.romaexplorer.it/click_conta/click_conta.php?indirizzo=" + b;
document.images.intro.src = u;
}
}
*/

//NUOVO

function newContaClick(target)
{
	var link=location.href;
	var xmlhttp;
	if (window.XMLHttpRequest)
	  {
	  xmlhttp=new XMLHttpRequest();
	  }
	else
	  {
	  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	  }
	xmlhttp.onreadystatechange=function()
	{
	if(xmlhttp.readyState==4)
	  {
	  //alert(xmlhttp.responseText);
	  }
	}
	
	xmlhttp.open("GET","http://www.romaexplorer.it/click_conta/new/conta_click.php?target="+target+"&link="+link,false);
	xmlhttp.send(null);
}

function oldContaClick(target)
{
	var link=location.href;
	var xmlhttp;
	if (window.XMLHttpRequest)
	  {
	  xmlhttp=new XMLHttpRequest();
	  }
	else
	  {
	  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	  }
	xmlhttp.onreadystatechange=function()
	{
	if(xmlhttp.readyState==4)
	  {
	  //alert(xmlhttp.responseText);
	  }
	}
	
	xmlhttp.open("GET","http://www.romaexplorer.it/click_conta/click_conta.php?indirizzo=" + target,false);
	xmlhttp.send(null);
}
