	//XMLHTTP Object
	var oXMLHTTP	=	new ActiveXObject( "Microsoft.XMLHTTP" );

	/*
	_createXMLHttpRequest: function() {
	if (window.XMLHttpRequest) {
	 return new XMLHttpRequest();
	} else if (window.ActiveXObject) {
	 return new ActiveXObject('Microsoft.XMLHTTP')
	} else {
	 _error("Could not create XMLHttpRequest on this browser");
	 return null;
	}
	}
	*/

	var DataToSend;		//Input Data
	var ReturnValue;	//Output Data
 
	//function to submit the information and return the output
	function XMLSubmit(URL, method)	//Get URL and Form method
	{	
		oXMLHTTP.open( method, URL, false );	//async = false because we are checking for that ready status
		oXMLHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded");	//header for form
		oXMLHTTP.send(DataToSend);				//send the data QueryString
		ReturnValue = oXMLHTTP.responseText;	//Get the response from that page on the Server-Side
	}

