function nuevoAjax() {
	// Crea el objeto AJAX.
	var xmlhttp = false;
	try {
		// Creacion del objeto AJAX para navegadores distintos de Internet Explorer
		xmlhttp = new ActiveXObject( "Msxml2.XMLHTTP" );
	}
	catch( e ) {
		try {
			// Creacion del objeto AJAX para Internet Explorer
			xmlhttp = new ActiveXObject( "Microsoft.XMLHTTP" );
		} catch( E ) {
			if ( !xmlhttp && typeof XMLHttpRequest != 'undefined' ) xmlhttp = new XMLHttpRequest();
		}
	}
	return xmlhttp;
}
