       function abrirImagem(nomeArquivo) {
            document.location = nomeArquivo;
        }
        function abrirImagem2(id) {
            var obj = document.getElementById(id);
            if (!obj.style.display == "") {
                esconderTodas();
                obj.style.display = "";
            }
        }
        function esconderTodas() {
            for (i = 0; i <= 7; i++) {
                esconderModelo('img_m_' + i);
            }
        }
        function exibirModelo(id) {
            var obj = document.getElementById(id);
            if (!obj.style.display == "") {                
                obj.style.display = "";
            }            
            obj.style.left = (event.clientX + 5);
            obj.style.top = (event.clientY + 5);
        }
        function esconderModelo(id) {
            var obj = document.getElementById(id);
            obj.style.display = "none";
        }
