function veure_imatge()
{

if (!document.images)
return 
document.getElementById("cota_neu").src = document.getElementById("hores_neu").value;
}

function endavant()
{
if (document.opcions_neu.hores_neu.selectedIndex<7){ 
document.opcions_neu.hores_neu.selectedIndex=document.opcions_neu.hores_neu.selectedIndex+1
veure_imatge()
}

}

function endarrera()
{
if (document.opcions_neu.hores_neu.selectedIndex>0) 
document.opcions_neu.hores_neu.selectedIndex=document.opcions_neu.hores_neu.selectedIndex-1;
veure_imatge();
}

