// JavaScript Documentfunction adattaPagina(misura) { //ridimensiona il flash quando viene ridisegnata la pagina	currmis = document.getElementById('flash_tucano').height;	newmis = misura+25;	if(document.getElementsByName('flash_tucano')) { //uso object		//alert("obj")		document.getElementsByName('flash_tucano')[0].height = newmis;		}	if (document.getElementById('flash_tucano')) { //uso embed		//alert("embed")		document.getElementById('flash_tucano').height = newmis;		} else {			alert("nessuno")			}		}	/*function start() {	//alert(window.parent.frames['corpo'].location.pathname)	if (window.parent.frames['corpo'].location.pathname == '/tucano/index.htm') {		window.parent.frames['corpo'].location.pathname = '/tucano/index2.htm';		}	}*/