
function getXML()
{
try{
return new XMLHttpRequest();
}catch(e){}
try{
return new ActiveXObject('Msxml2.XMLHTTP');
}
catch(e){}
try{
return new ActiveXObject('Microsoft.XMLHTTP');
}catch(e){}
}


function apri(dato)
{
var xmlhttp = getXML();
xmlhttp.open("POST",dato,false);
xmlhttp.send(null);
if(xmlhttp.status==200 || xmlhttp.status==0)
{
var risultato = xmlhttp.responseText;
var app = document.getElementById('content_table');
app.innerHTML = risultato;
}
else
{
alert("Erroreḷ̣ durante l'apertura della pagina...");
}
}



