/****************************************************************
*  Copyright notice
*  
*  (c) 2004 Sintech s.r.l.
*  All rights reserved
*  
*****************************************************************/

function openWin(pagina, scroll, nomefinestra, width, height ) {
	larghezza   = screen.width;
	altezza     = screen.height;
	spazio_oriz = (larghezza-width) / 2;
	spazio_vert = (altezza-height) / 2;
	parametri   = "resizable=yes,scrollbars="+scroll+",width="+width+",height="+height+",left="+spazio_oriz+",top="+spazio_vert;
	window.open(pagina, nomefinestra, parametri);
}

