﻿// JScript File




function testingdata(url,Response)
{

if(navigator.appName == "Microsoft Internet Explorer")
    {
        
	    var xhttp = new ActiveXObject("Msxml2.XMLHTTP");
	}
	else
	{
        var xhttp = new XMLHttpRequest();
    }
	xhttp.open("GET",url,true);
	
	xhttp.onreadystatechange = 
	function() 
	{
		if (xhttp.readyState == 4 && xhttp.responseText) 
		{
			
			Response(xhttp.responseText);
		}
	}
	xhttp.send(null);
}

function fillit(XML)
{
document.getElementById("ctl00_cphCentralMainItems_tblHotProperties").innerHTML=XML;

}

