function ajax()
{
	var ajaxRequest;
	
	try{
		// Opera 8.0+, Firefox, Safari
		ajaxRequest = new XMLHttpRequest();
	} catch (e){
		// Internet Explorer
		try{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				// Si el navegador no es compatible con ajax
				//alert("Tu navegador no soporta ajax, por favor actualizalo para no generar error en la captura.!");
				return false;
			}
		}
	}
	
	return ajaxRequest;
}