function getXMLHTTP1(){var xmlhttp=false;try{xmlhttp=new XMLHttpRequest();}
catch(e){try{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
catch(e){try{xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");}
catch(e1){xmlhttp=false;}}}
return xmlhttp;}
{var strURL="../inc/uye.asp";var req1=getXMLHTTP1();if(req1){req1.onreadystatechange=function(){if(req1.readyState==4){if(req1.status==200){document.getElementById('uyex').innerHTML=req1.responseText;}else{alert("Sorgulama Yapilirken Bir Sorun Olustu.\n"+req1.statusText);}}}
req1.open("GET",strURL,true);req1.send(null);}}
