// Schermo intero
function maxiPad() {
		if (navigator.appName == 'Microsoft Internet Explorer' && (navigator.platform.substring(0,3) == 'Win')) {
			var scw=screen.Width-10;
			var sch=screen.Height-30;
			woo=window.open ("index2.html", "left", "left=0,top=0,width=" + scw + ",height=" + sch);
		}
		else if (navigator.appName == 'Netscape' || navigator.platform == 'MacPPC') {
			woo=window.open ("index2.html", "left", "screenX=0,screenY=0,outerWidth=" + screen.width + ",outerHeight=" + screen.height);
		}
		else {
			document.write("<HTML><BODY><CENTER><H1>Get Netscape or ie 4.0</H1></CENTER></BODY></HTML>")
		}
	}