﻿// Função que fecha o pop-up ao clicar no link fechar
function fechar(){
    document.getElementById('DivPopup').style.display = 'none';
}

// Aqui definimos o tempo para fechar o pop-up
function abrir(){
    document.getElementById('DivPopup').style.display = 'block';
}


