// JavaScript Document
	<!--
//Create a boolean variable to check for a valid IE instance
var xmlhttp = false;

//Check if we are using IE
try
{
	//if the javascript version is greater than 5
	xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
	//if not, then use the older active x object
	try
	{
		//if we are using IE
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	catch(E)
	{
		//else we must be using a non-IE browser
		xmlhttp = false;
	}
}

//if we are using a non-IE browser, create a javascript instance of the object
if(!xmlhttp && typeof XMLHttpRequest != 'undefined')
{
	xmlhttp = new XMLHttpRequest();
	//alert("You are not using MS IE");
}
function makerequest(serverPage, objID)
{
	var obj = document.getElementById(objID);
	xmlhttp.open("GET", serverPage, true);
	xmlhttp.onreadystatechange = function()
	{
		//alert(xmlhttp.readyState + ', ' + xmlhttp.status);
		if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
		{
			obj.innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.send(null);
}

