// Java Document
// Js Sistem Datasep Tarafindan Gelistirilmistir.
function getXMLHTTP1() { //fuction to return the xml http object
		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) {
					// only if "OK"
					if (req1.status == 200) {	
									
						document.getElementById('uyex').innerHTML=req1.responseText;						
					} else {
						//alert("Sorgulama Yapisdflirken Bir Sorun Olustu.\n" + req1.statusText);
					}
				}				
			}			
			req1.open("GET", strURL, true);
			req1.send(null);
		}		
	}
