
// janela c/ tam. definido
function abre_janeladef(name, url, left, top, width, height) {
toolbar_str = 'no';
menubar_str = 'no';
statusbar_str = 'no';
scrollbar_str = 'yes';
resizable_str = 'yes';
window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

