/**
 * Return a XMLHttpRequest object
 */
function getXMLHttpRequestObj(){
	if(window.XMLHttpRequest){
		// IE7+, Firefox, Chrome, Opera and Safari
		xmlhttp = new XMLHttpRequest();
	}else{
		// IE6 and IE5
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}

	return xmlhttp;
}
