//
// xml.js
//
var xhr = new Object();

xhr.create = function() {
	var xmlhttp = "";
	if (typeof XMLHttpRequest!='undefined')  {
		xmlhttp = new XMLHttpRequest();
	}
	else if( window.ActiveXObject ) {
		xmlhttp = new ActiveXObject("MSXML2.XMLHTTP");
	}
	if( xmlhttp ) {
		return xmlhttp;
	}
	return false;
}

