<!--
response = "";
nextStart = 0;
function initXML() {
  var xmlhttp = null;
  if( window.ActiveXObject ) {
    for( var i = 5; i; i-- ) {
      try {
        if( i == 2 ) {
          xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } else {
          xmlhttp = new ActiveXObject("Msxml2.XMLHTTP." + i + ".0");
        }
        break;
      } catch(e) {                        
        xmlhttp = null;
      }
    }
  }
  return xmlhttp;
}
function getData(page, wait, TagName) {
  var xmlhttp = initXML();
  if (!xmlhttp && typeof XMLHttpRequest != "undefined" ) {
    xmlhttp = new XMLHttpRequest();
  }
  if ( xmlhttp ) {
    xmlhttp.onreadystatechange = function () {
      if( xmlhttp.readyState == 4 ) {
        response = xmlhttp.responseText;
        if ( document.getElementById(TagName) ) {
          var Obj = document.getElementById(TagName);
          Obj.innerHTML = response;
        }
      }
    };
    xmlhttp.open("GET", page, wait);
    xmlhttp.send(null);
  }
  nextStart = Objects.in_array(page);
}
// -->
