﻿      function exibe(){
        var div;
        div = document.getElementById('maquinas');
        div.style.display = '';
      }
      function inibe(){
        var div;
        div = document.getElementById('maquinas');
        div.style.display = 'none';
      }
