// JavaScript Document
var http  = getHTTPObject();
function getHTTPObject()
{
	var http=null;
	if(window.ActiveXObject)
	{
		http=new ActiveXObject("Msxml2.XMLHTTP");
		if(!http)
		{
			http=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	else if(window.XMLHttpRequest)
	{
		http=new XMLHttpRequest();
	}
	return http;
}

function handleHttpResponse() 
{
	if (http.readyState == 4) 
	{
		results = http.responseText;
	}
}

function AJAX(url,lx)
{	
	http.open("GET", url , true);
	//alert(url);
	if (lx == 0)
	{
		http.onreadystatechange = handleHttpResponse;			
	}
	http.send(null);			
}






 
 

 
 
 
 
 
 

