﻿function getHttpObject(){
	var XHRObj;
	if(typeof XMLHttpRequest != "undefined"){
		XHRObj = new XMLHttpRequest();
	}else if(typeof ActiveXObject != "undefined"){
		XHRObj = new ActiveXObject("Microsoft.XMLHTTP");
	}
	return XHRObj;
}
