<!--//
function popup( nome , w , h , x , y ) {

	if (x == null) var x = (screen.width -w)/2;
	if (y == null) var y = (screen.height - h)/2;
	
	var finestra = window.open(nome,'Legal','width=' + w +',height=' + h + ', toolbar=no,directories=no,location=no,status=no,menubar=no,copyhistory=no,scrollbars=no,resizable=no')
	
	finestra.moveTo(x,y);
	finestra.focus();
	
}

//-->
