
function imposta_schermo() {
//	Imposta lo schermo a seconda della definizione
	if (screen.width<801){
//		alert('piccolo');
//		window.resizeTo(740,540);
//		window.moveTo(30,30);
	}
	else {
//		alert('grande');
//		window.resizeTo(964,700);
//		window.moveTo(32,34);
	}
}

function ToggleSection(strID) {
	var eDiv;			// the DIV object
	var eLabel;			// the "show/hide" SPAN object
	var eArrow;			// the side/down arrow IMG object
	eDiv = document.all[strID];
	if (! (eDiv == null)) {
		//alert('got the DIV element for ID ' + strID + '=' + eDiv.style.display);
		if (eDiv.style.display == 'none') {
			eDiv.style.display = 'inline';	// Show the section.
		} else {
			eDiv.style.display = 'none';	// Hide the section.
		}
	}
}
