<!-- 
if(screen){ 
topPos=0 
leftPos=0 
} 
function getPage(thePage,wt,ht,scrollvar){ 
leftPos= (screen.width-wt)/2 
topPos = (screen.height-ht)/2 
newWin1 =  window.open(thePage,'aWin','scrollbars='+scrollvar+',resizable=yes,left='+leftPos+',top='+topPos+',width='+wt+',height='+ht);
} 
// --> 
<!-- 
/*
 * display the given message in the status bar
 * @param st (String) The string to display in the status bar.
 */
function displayStatus( st ) {
window.status = st;
}

// --> 
<!--
function scorri(){
	var IE = navigator.appName.indexOf("Microsoft") != -1;
	var film = IE ? window.mainMovie : 

window.document.mainMovie;
	//filmato.SetVariable("_root.clip.righe", 3);
	if (event.wheelDelta >= 0){
		film.TCallLabel("_level0.clipScroll", "haut");
	} else {
		film.TCallLabel("_level0.clipScroll", "bas");
	}
}
//-->
