function abrirMail(arquivo) {
  newWindow = window.open(arquivo, "email", "width=550,height=420,scrollbars,resizable");
  newWindow.focus();
}

