// Non rimuovere !!
// Next Utility Javascript
function apri(cosa,titolo,larghezza,altezza)
{       
		//var aa
		//var xxx = screen.Width/2-224
		//var yyy = screen.Height/2-224	
		if( larghezza == 0 ) { larghezza = 420; }
		if( altezza == 0 )   { altezza = 420; }
		var aa = window.open(cosa,titolo,'toolbar=no,location=no,directories=no,status=no,menu=no,scrollbars=no,resizable=no,width='+larghezza+',height='+altezza,true);
        //aa.moveTo(xxx,yyy)
		return;
}
function checkSize(w,h) {
         window.resizeTo(w,h);
}