function getAjax(myURL) {
    if (window.XMLHttpRequest) {
        xmlhttp=new XMLHttpRequest();
    } else if (window.ActiveXObject) {
        xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
    }
    if (typeof(xmlhttp)=='object') {
        xmlhttp.onreadystatechange=xmlhttpResults;
        xmlhttp.open('GET', myURL, true);
        xmlhttp.send(null);        
    } else {
        alert('Your browser is not remote scripting enabled. You can not run this .');
    }
}

function xmlhttpResults() {	
	if (xmlhttp.readyState==4) {
        if (xmlhttp.status==200) {
           setTimeout('loadResults()',500);
        }
    }
}