var xmlHttpp;

function createXMLHttpRequest() {
	if (window.ActiveXObject) {
 	 xmlHttpp = new ActiveXObject("Microsoft.XMLHTTP");
	} else if (window.XMLHttpRequest) {
	xmlHttpp = new XMLHttpRequest();
	}
}


