var YukleniyorTab = '<div style="width:600px; padding-top:50px;" align="center">Yükleniyor...<br> Lütfen bekleyin.<br /><br /><img src="/images/loading.gif" style="float:none;width:16px; height:16px;" border="0" alt="Yükleniyor..."></div>';

function ObjeOlustur(){
    try {
      return new XMLHttpRequest();
    } catch (trymicrosoft) {
      try {
        return new ActiveXObject("Msxml2.XMLHTTP");
      } catch (othermicrosoft) {
        try {
          return new ActiveXObject("Microsoft.XMLHTTP");
        } catch (failed) {
          return false;
        }
      }
    }
}
function GetContent(CType,PageNo){
		GetContentPage = new ObjeOlustur;

		document.getElementById('haber_ic_orta').innerHTML =  YukleniyorTab ;
		
		GetContentPage.open('GET','/modul/habergetir.php?ctype=' + CType + '&pageno=' + PageNo,true);
		GetContentPage.onreadystatechange = GetContentFillPage;
		GetContentPage.send(null);
	}

function GetContentFillPage(){
	if (GetContentPage.readyState == 4){
		if (GetContentPage.status == 200){
			var Cevap = GetContentPage.responseText;   
			document.getElementById("haber_ic_orta").innerHTML = Cevap;
		}else{
			//alert(GetContentPage.responseText);
		}
	}
}

