// JavaScript Document
if(navigator.appName == "Microsoft Internet Explorer") {
     http = new ActiveXObject("Microsoft.XMLHTTP"); } 
else {
     http = new XMLHttpRequest(); }
function resimSec(f_sayfa) 
{


  			    

 
          http.open('get', 'inc_akademisyenler.asp?say=' + f_sayfa);
          http.onreadystatechange = function() {
              document.getElementById('sonuc').innerHTML = "<div align='center'><P><BR><BR><BR>&nbsp;<img src=images/loading.gif /></P></div>";
               if (http.readyState == 4) {
                    document.getElementById('sonuc').innerHTML = http.responseText;

					}
          };
          http.send(null);
		  
     };
	 function kolonSec(f_sayfa) 
{


  			    

 
          http.open('get', 'inc_kolon.asp?say=' + f_sayfa);
          http.onreadystatechange = function() {
              document.getElementById('sonuc2').innerHTML = "<div align='center'><P><BR><BR><BR>&nbsp;<img src=images/loading.gif /></P></div>";
               if (http.readyState == 4) {
                    document.getElementById('sonuc2').innerHTML = http.responseText;

					}
          };
          http.send(null);
		  
     };
	 
