<!--
// 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 = 50;
y = 50;
win = window.open(fileName,null,"width="+w+",height="+h+",left="+x+",top="+y+",scrollbars="+bar+",resizable=yes");}
win.focus();
//return true;
}

function check_win() {
	if (win && !win.closed) {win.close();}
//	return true
}
//-->
