var xmlHttp = null;
var oThisDiv = null;

if (window.XMLHttpRequest) { 
  xmlHttp = new XMLHttpRequest(); 
} else if (window.ActiveXObject) { 
  try { 
    xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); 
  } catch (e) { 
    try{ 
      xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); 
    } catch (e) { 
    }
  } 
} 

function getData (oThisThing,sUrl) {
  oThisDiv = document.getElementById(oThisThing);

  if (window.XMLHttpRequest) {
     xmlHttp.open("GET", "http://www.thewhiteknuckledrivers.com" + sUrl);
     xmlHttp.onreadystatechange = handler;
     xmlHttp.send();
  }

}

function handler() {
    if (xmlHttp.readyState == 4 /* complete */) {
        if (xmlHttp.status == 200) {
            oThisDiv.innerHTML = xmlHttp.responseText;
            //code = xmlHttp.responseText;
            //eval(code);
        }
    }
}
