// JavaScript Document
        function fechar(id){
            document.getElementById(id).style.display = 'none';
        }
        function abrir(id){
            document.getElementById(id).style.display = 'block';
        }
