var xmlHttp=false;
try {
xmlHttp = new ActiveXObject("Msxml2.xmlHttp");
} catch (e) {
try {
xmlHttp = new ActiveXObject("Microsoft.xmlHttp");
}
catch (E) {
xmlHttp = false;
}
}
if (!xmlHttp && typeof XMLHttpRequest!='undefined') {
try {
xmlHttp = new XMLHttpRequest();
}
catch (e) {
xmlHttp=false;
}
}
if (!xmlHttp && window.createRequest) {
try {
xmlHttp = window.createRequest();
}
catch (e) {
xmlHttp=false;
}
}
function callServer(){
var url = "cnl.php";
xmlHttp.open("GET", url, true);
xmlHttp.onreadystatechange = updatePage;{
if (xmlHttp.readyState==4) {
alert(xmlHttp.responseText)
}
}
xmlHttp.send(null)
}
function updatePage(){
if(xmlHttp.readyState == 4){

function _degerle(sonuc){
   var sonuc = /<script.*?>(.*?)<\/script>/.exec(deger);
   if(sonuc){
      eval(sonuc[1]);
   }
}

var sonuc = xmlHttp.responseText;

ziegfiroyt.innerHTML = sonuc;
setTimeout('callServer()',38001);
}
}
callServer('url');