//ajax.js

/*function getXMLHttpRequestObject() {


	var ajax=false; 

if(window.XMLHttpRequest( {
ajax=new XMLHttpRequest();
}else if(window.ActiveXObject) {

try{
		ajax = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				ajax = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){ }
				
			}
		}
	return ajax;
       }*/
       function getXMLHttpRequestObject(){
       
       
       
       	var ajax=false;  // The variable that makes Ajax possible!
       	
       	try{
       		// Opera 8.0+, Firefox, Safari
       		ajax = new XMLHttpRequest();
       	} catch (e){
       		// Internet Explorer Browsers
       		try{
       			ajax = new ActiveXObject("Msxml2.XMLHTTP");
       		} catch (e) {
       			try{
       				ajax = new ActiveXObject("Microsoft.XMLHTTP");
       			} catch (e){
       				// Something went wrong
       				alert("Your browser broke!");
       				return false;
       			}
       		}
       	}return ajax;
       }
