function ajax()
{
	if(navigator.appName!="Netscape")
	{
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	if( xmlHttp == null)
		xmlHttp=new ActiveXObject("MSXML2.XMLHTTP");
	if( xmlHttp == null)
		xmlHttp=new ActiveXObject("MSXML2.XMLHTTP.3.0");
	if( xmlHttp == null)
		xmlHttp=new ActiveXObject("MSXML2.XMLHTTP.4.0");
	if( xmlHttp == null)
		xmlHttp=new ActiveXObject("MSXML2.XMLHTTP.5.0");
	if( xmlHttp == null)
		xmlHttp=new ActiveXObject("MSXML2.XMLHTTP.6.0");
	if( xmlHttp == null)
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	}
	else	
	{
		xmlHttp=new XMLHttpRequest();
	}

	if( xmlHttp == null )
		alert("Your Broser does not support AJAX!");
	
	if( xmlHttp != null )
	return xmlHttp;
}
