
var ajax_3 = false;


if (window.XMLHttpRequest) {

	ajax_3 = new XMLHttpRequest();
	
} else if (window.ActiveXObject) {
	try {
		ajax_3 = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e1) { 
		try {
			ajax_3 = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (e2) { }
	}
	
}

if (!ajax_3) {
	alert ('Some page functionality is unavailable.');
}


