	var xmlhttp = false;
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (E) {
			xmlhttp = false;
		}
	}
	if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
		xmlhttp = new XMLHttpRequest();
	}

Array.prototype.inArray = function (value)
{
    var i;
    for (i=0; i < this.length; i++) {
        if (this[i] === value) {
            return true;
        }
    }
    return false;
};
	

	function makeajaxrequest(serverPage,objID)
	{
		var obj = document.getElementById(objID);
		try
		{
			xmlhttp.open("GET",serverPage,true);
			xmlhttp.onreadystatechange = function()
			{
				if (xmlhttp.readyState==4)
				{
					obj.innerHTML = xmlhttp.responseText;
				}
				else
				{
					document.getElementById(objID).innerHTML = "<p bgcolor='#000000' style='color:#ffffff;font-size:11px;font-family:tahoma,verdana,arial;' align='center'>Loading....! Please wait for a while.</p>";
				}
			}
			xmlhttp.send(null);
		}
		catch(e)
		{
		}
	}	




