


	// AJAX POST/GET
	function makeAjaxObject(){
	
		try{
			var xhttp = new XMLHttpRequest();
		}catch(trymicrosoft){
			try {
		    	xhttp = new ActiveXObject("Msxml2.XMLHTTP");
		  	}catch(othermicrosoft){
		    	try {
		     		xhttp = new ActiveXObject("Microsoft.XMLHTTP");
		    	}catch(failed){
		      		xhttp = false;
		      	}
		  }
		}

		return xhttp;
			
	}