/* ---------------------------- */
/* XMLHTTPRequest Enable */
/* ---------------------------- */
function createObject() {
var request_type;
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer"){
request_type = new ActiveXObject("Microsoft.XMLHTTP");
}else{
request_type = new XMLHttpRequest();
}
return request_type;
}

var http = createObject();






var nocache = 0;


function getnextresults(fromProperty) {

nocache = Math.random();

http.open('get', '/actions.cfm?action=getnextresults_action&nocache = '+nocache);
http.onreadystatechange = function() {
    getnextresults2(fromProperty);
};
http.send(null);
}

function getnextresults2(fromProperty){
if(http.readyState == 4){
nocache = Math.random();
http.open('get', '/ajax.cfm?ajaxpage=property_search_list_display&nocache = '+nocache);
http.onreadystatechange = function() {
    getnextresults3(fromProperty);
};
http.send(null);
}
}




function getnextresults3(fromProperty){
if(http.readyState == 4){
 var getnextresults4 = http.responseText;
 {
 document.getElementById('nextresultset'+fromProperty).innerHTML = getnextresults4;
}
}
}

