var janela_contato = null;

function contato() {
    if (janela_contato == null || janela_contato.closed) {
        height = 450;
        width = 380;
        janela_contato = window.open("contato.php", "", "menubar=no,scrollbars=no,status=yes,toolbar=no,resizable=no,width=" + width + ",height=" + height + ",titlebar=no,location=no,directories=no");
        l = (screen.width - width) / 2;
        t = (screen.height - height) / 2;
        janela_contato.moveTo(l, t);
        janela_contato.focus();
    }
    else {
        l = (screen.width - width) / 2;
        t = (screen.height - height) / 2;
        janela_contato.moveTo(l, t);
        janela_contato.focus();
    }
}
