<!--
		//definizione per aprire finestre
		
		function apriFinestra(collegamento,nomeFinestra,larghezza,altezza){
			larghFinestra=larghezza; 
			altezFinestra=altezza; 
		
		if(nomeFinestra=='esame'){
		sinistra=(screen.width-larghezza)/2; 
		alto=(screen.height-altezza)/2; 
		
		}
		
		else {
		sinistra=0; 
		alto=0; 
		
		}
		
		
		window.open(collegamento,nomeFinestra,"left="+sinistra+",top="+alto+",width="+larghFinestra+",height="+altezFinestra+",scrollbars");
		
		}
		
	/* This function should be used for all image rollover effects */

	function changeImage(imageName,newImageSource) {
		if (document.images) {
			document.images[imageName].src = newImageSource;
		}
	}
	
//-->

