// JavaScript Document
<!--
function AbreJanela(arquivo, tamx, tamy)
//onde arquivo é html popUp, tamx é o tamanho horizontal em pixels e tamy tamanho vertical em pixels
{
window.open(arquivo,"","resizable=no,toolbar=no,status=no,menubar=no,scrollbars=no,width=" + tamx + ",height=" + tamy)
}
// -->