// JavaScript Document

<!--
//Funzioni principali del sito occhei.it

// APRI FINESTRA
function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

// ROLLOVER E ROLLOUT
function rollover(nomePulsante, nomeImg) {
	var pulsanteOff= document.getElementById(nomePulsante);
	pulsanteOff.src="immagini/" + nomeImg; 	
}

function rollout(nomePulsante, nomeImg) {
	var pulsanteOff= document.getElementById(nomePulsante);
	pulsanteOff.src="immagini/" + nomeImg; 
}

//-->