var req_2;

function loadXMLDoc_2(url_2) {

   // Internet Explorer
   try { req_2 = new ActiveXObject("Msxml2.XMLHTTP"); }
   catch(e) {
      try { req_2 = new ActiveXObject("Microsoft.XMLHTTP"); }
      catch(oc) { req_2 = null; }
   }

   // Mozailla/Safari
   if (!req_2 && typeof XMLHttpRequest != "undefined") { req_2 = new XMLHttpRequest(); }

   // Call the processChange() function when the page has loaded
   if (req_2 != null) {
      req_2.onreadystatechange = processChange_2;
      req_2.open("GET", url_2, true);
      req_2.send(null);
   }
}

function processChange_2() {
   // The page has loaded and the HTTP status code is 200 OK
   if (req_2.readyState == 4 && req_2.status == 200) {

      // Write the contents of this URL to the searchResult layer
      getObject_2("form_holder").innerHTML = req_2.responseText;
   }
}

function getObject_2(name) {
   var ns4 = (document.layers) ? true : false;
   var w3c = (document.getElementById) ? true : false;
   var ie4 = (document.all) ? true : false;

   if (ns4) return eval('document.' + name);
   if (w3c) return document.getElementById(name);
   if (ie4) return eval('document.all.' + name);
   return false;
}
