// ačęėįšųūž
var xmlHttp = GetXmlHttpObject();
function GetXmlHttpObject() {
	xmlHttp = null;
	try {
		// Firefox, Opera 8.0+, Safari, IE7+
		xmlHttp = new XMLHttpRequest();
	} catch (e) {
		try {
			// Internet Explorer 6+
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				// Internet Explorer 5.5+
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {
				// Ajax unsupported
				alert("Your browser does not support XMLHTTP!");
			}
		}
	}
	return xmlHttp;
}
