	function GetAjax()
	{	
		var xmlhttp = false;
		
		try
		{
			// SI LA VERSION DE JAVASCRIPT ES MAS NUEVA Q LA 5 Y ESTAMOS USANDO INTERNET EXPLORER....
			
			xmlhttp = new ActiveXObject( "Msxml2.XMLHTTP" );
		}
		catch ( e )
		{
			try
			{
				// SI LA VERSION DE JAVASCRIPT ES ANTERIOR A LA 5 Y ESTAMOS USANDO INTERNET EXPLORER..
				
				xmlhttp = new ActiveXObject( "Microsoft.XMLHTTP" );
			}
			catch ( E )
			{
				// EN CASO DE LLEGAR ACA ES PORQUE NO SE ESTA USANDO EL INTERNET EXPLORER..
				
				xmlhttp = false;
			}
		}
		
		// SI ESTAMOS USANDO UN EXPLORADOR QUE NO ES EL INTERNET EXPLORER..
			
		if ( !xmlhttp && typeof XMLHttpRequest != "undefined" )
		{
			xmlhttp = new XMLHttpRequest();
		}
		
		return xmlhttp;
	}