var AjaxPROC=false;
try {AjaxPROC=new XMLHttpRequest();
} catch (trymicrosoft) {
try {
AjaxPROC=new ActiveXObject("Msxml2.XMLHTTP");
} catch (othermicrosoft) {
try {AjaxPROC=new ActiveXObject("Microsoft.XMLHTTP");
} catch (failed) {
AjaxPROC=false;
}}}
if (!AjaxPROC)
alert("XMLHTTPRequest isteminde hata (Ajax/Java)");


function FUNC(url) {
var nada=1;
document.getElementById('DIVL').innerHTML='İşleminiz yapılıyor lütfen bekleyiniz...';
AjaxPROC.open("GET", url, true);
AjaxPROC.onreadystatechange = ActualizarDIVListadoverbos;
AjaxPROC.send(null);}
function ActualizarDIVListadoverbos()
{if (AjaxPROC.readyState==4)
{if (AjaxPROC.status==200)
{document.getElementById('DIVL').innerHTML=AjaxPROC.responseText;

} else{
nada=1
alert("Bi hata var ..:  " + AjaxPROC.statusText)
}}}
