function getPage(url,p)
{
var httpxml;
try
{
// Firefox, Opera 8.0+, Safari
httpxml=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
httpxml=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
httpxml=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e)
{
alert("Your browser does not support AJAX!");
return false;
}
}
}
document.getElementById("idocument").innerHTML="<img src='img/pageloader.gif' width='16' height='16' border='0' style='padding-top:100px;padding-right:50px;' />";
function stateck() 
{
if(httpxml.readyState==4)
{
document.getElementById("idocument").innerHTML=httpxml.responseText;
}
}
gurl="inc/"+p+"/iframe.php?id="+url;
httpxml.onreadystatechange=stateck;
httpxml.open("GET",gurl,true);
httpxml.send(null);
}
