	function createSimpleAjaxObj()
	{

		 // Version Mozilla
		if (window.XMLHttpRequest)__xmlhttp = new window.XMLHttpRequest();

		 // Version IE
		else if (window.ActiveXObject)__xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');

		return __xmlhttp;

	}

	function createAjaxObj(url,handle)
	{
		//if (objxmlhttp && objxmlhttp.readyState < 4)	objxmlhttp.abort();
		
		//if(browserType == "ie")							objxmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
		//if(browserType == "other")						objxmlhttp = new window.XMLHttpRequest();	

		 // Version Mozilla
		if (window.XMLHttpRequest)_objxmlhttp = new window.XMLHttpRequest();

		 // Version IE
		else if (window.ActiveXObject)_objxmlhttp = new ActiveXObject('Microsoft.XMLHTTP');


		_objxmlhttp.onreadystatechange = handle;
		_objxmlhttp.open('GET', url);
		_objxmlhttp.send(null);	
		return _objxmlhttp;
	}
	