function CrearAjax () //Función generia para cualquier poryecto
{
	var ObjAjax=false; 
	try 
	{ 
		// Creo el ObjAjax para NO IE
		ObjAjax=new ActiveXObject("Msxml2.XMLHTTP"); 
	}
	catch(e)
	{ 
		try
		{ 
			// Creo el ObjAjax para IE
			ObjAjax=new ActiveXObject("Microsoft.XMLHTTP"); 
		} 
		catch(E) { ObjAjax=false; }
	}
	if (!ObjAjax && typeof XMLHttpRequest!='undefined') { ObjAjax=new XMLHttpRequest(); } 

	return ObjAjax; 
	}
