
<!--
xmlHttp = false;
if (window.XMLHttpRequest) {
  xmlHttp = new XMLHttpRequest();
} else if (window.ActiveXObject) {  
  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}

function updateContent (filename) {
  if (!xmlHttp) {
  alert('Cannot create XMLHTTP instance');
  return false;
  }
  xmlHttp.open("GET", filename, true);
  xmlHttp.onreadystatechange = updatePage;
  xmlHttp.send(null);  
}


function updatePage() {
  if (xmlHttp.readyState != 4) {
    var obj = document.getElementById("column2");
    if(obj != undefined) {
          document.getElementById("column2").innerHTML = "<img src=\"/khuriyakub/opencms/system/modules/com.szinf.khuriyakub/resources/images/load.gif\" />";  
    }	
    
  }
  if (xmlHttp.readyState == 4) {	  
    var response = xmlHttp.responseText;    
    document.getElementById("ajax").innerHTML = response;
document.documentElement.scrollTop = 251;

  }
}


-->