// written by Quentin from www.xerxes.hk
// for hkpropertyman only @ Jun 2009



var xmlhttp = false;

// check if IE
try
{
	// if js version > 5
	xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
	// older js
	try
	{
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	catch (E)
	{
		// non IE
		xmlhttp = false;
	}
}

// non IE
if (!xmlhttp && typeof XMLHttpRequest != 'undefined')
{
	xmlhttp = new XMLHttpRequest();
}

function makeRequest(page, objID)
{
	var obj = document.getElementById(objID);
	xmlhttp.open("GET", page);
	xmlhttp.onreadystatechange = function(){
		if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
		{
			obj.innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.send(null);
}

