// JavaScript Document


function CreateRequestObject() {
	var xmlhttp;
	try {
		xmlhttp = new ActiveXObject('Msxml2.XMLHTTP'); //Try the first kind of active x object…
	} catch (e) {
		
	try {
		xmlhttp = new ActiveXObject('Microsoft.XMLHTTP'); //Try the second kind of active x object
	} catch (E) {
		xmlhttp = false;
	}
    }// end try catch
	
    if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
         xmlhttp = new XMLHttpRequest(); //If we were able to get a working active x object, start an XMLHttpRequest
    }
    return xmlhttp;
};// End function CreateRequestObject