function Window(Window) {
var width = 500;
var height = 450;
var left = 40
var top = 50
window.open(Window,'Window','width='+width+' , height='+height+', top='+top+', left='+left+', scrollbars=yes,fullscreen=no');
}

function popup(diretoria) {
var width = 750;
var height = 648;
var left = 40
var top = 50
window.open(diretoria,'diretoria','width='+width+' , height='+height+', top='+top+', left='+left+', scrollbars=yes,fullscreen=no');
}