	function e (nome) {

		if (document.all) {

			return eval("document.all." + nome);
		} else {

			return document.getElementById(nome);
		}
	}

	function showSub (nome,pagina) {
		hideAllSub();
		e(nome).style.display = 'block';
		if (pagina != '')
			location.replace( pagina );
	}

	function hideSub (nome) {
		e(nome).style.display = 'none';
	}

	function hideAllSub () {
		hideSub('sub00');
		hideSub('sub01');
		hideSub('sub02');
		hideSub('sub10');
		hideSub('sub11');
		hideSub('sub12');
		hideSub('sub13');
	}

	function hideAllSubExcept (nome) {
		if (nome=='sub00' || nome=='sub01' || nome=='sub02')
		{
			showMenu('MOTORI');
			hideMenu('RIDUTTORI');
		}
		else
		{
			hideMenu('MOTORI');
			showMenu('RIDUTTORI');
		}
		showSub(nome,'');
	}

	function showMenu (nome) {
		e(nome).style.display = 'block';
	}

	function hideMenu (nome) {
		e(nome).style.display = 'none';
	}

	function showPage (frame,title,subtitle) {
		e('title').innerHTML = '&nbsp;&nbsp;'+title;
		e('subtitle').innerHTML = '&nbsp;&nbsp;'+subtitle;
		e('myfrm').src = frame;
	}


