
function ajaxGet(file,obj){
  			var xmlObj = null;
 			if(window.XMLHttpRequest){
      			xmlObj = new XMLHttpRequest();				
				
			}else if(window.ActiveXObject){
      			xmlObj = new ActiveXObject("Microsoft.XMLHTTP");
				
  			}else{	return;	}
  
			xmlObj.onreadystatechange = function(){
			if(xmlObj.readyState == 4){
       				var result = xmlObj.responseText;
       				updateObj(obj, result);
     				}
    			}
    			
			 document.getElementById(obj).innerHTML="<center><img src='http://www.firmabazaar.com/iframe/yukleniyor.gif'><br><B>Lütfen Bekleyiniz.</B></center>";
			
			xmlObj.open ('GET', file, true);			
			 //alert(file);
			 xmlObj.send('');
    		
  	}
	
  function updateObj(obj, data){   
   	document.getElementById(obj).innerHTML=data;
  }
  
