public void VerOcultarInstrucciones()
 {
     if (estadoActualREIM == estadoREIM.vista1 || estadoActualREIM == estadoREIM.vista2)
     {
         sesion.registrarInstruccionesLeidas();
         if (instruccionesVista1yVista2.enabled == false)
         {
             CambiarAudio(2);
             instruccionesVista1yVista2.enabled = true;
         }
         else
         {
             CambiarAudio(1);
             instruccionesVista1yVista2.enabled = false;
         }
     }
 }