function getXmlHttpObject() {
		var xmlHTTP=false;
		
		//It is used to create the XMLHttpRequestObject when using Internet Explorer family browser
		try {
			xmlHTTP=new ActiveXObject("Msxml2.XMLHTTP");
		} catch(e) {
			//alert("error");
		}
		
		
		//It is used to create the XMLHttpRequestObject when using other than Internet Explorer family browsers.
		//This will be executed only if the above statement fails.
		if(!xmlHTTP && typeof XMLHttpRequest !="undefined") {
			xmlHTTP=new XMLHttpRequest();
		}
		
		//return the object
		return xmlHTTP;
	}
