// Vicente Ribes (http://www.pgc-2008.com). Octubre del 2007.
function crearXmlHttp() {
	var xmlHttp = false
	try {
		xmlHttp = new XMLHttpRequest()
	}
	catch (IEmayor5) {
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP")
		}
		catch (IEmenor5) {
			try {
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP")
			}
			catch (noAjax) {
				xmlHttp = false
			}
		}
	}
	if (!xmlHttp) alert("Este sistema necesita el soporte de AJAX")
	return xmlHttp
}