function getRequest() {
	try {
		return (new ActiveXObject("Msxml2.XMLHTTP2"));
	} catch (e) {}
	try {
		return (new ActiveXObject("Microsoft.XMLHTTP"));
	} catch (e) {}
	try {
		return (new XMLHttpRequest());
	} catch (e) {}

	return (null);
}
