<!--
// finestra pop-up usata per le schede, con dimensioni e scroll impostabili
var win = null;
 
function show_win(fileName,w,h,bar){
check_win();
if(fileName != 'null'){
x = (window.screen.width/2)-(w/2);
y = (window.screen.height/2)-(h/2);
win = window.open(fileName,null,"width="+w+",height="+h+",left="+x+",top="+y+",scrollbars="+bar+",resizable=no");}
win.focus();
//return true;
}
 
function check_win() {
 if (win && !win.closed) {win.close();}
// return true
}
//-->