function veure_imatge()
{

if (!document.images)
return 
document.getElementById("onatge").src = document.getElementById("hores_onatge").value;
}

function endavant()
{
if (document.opcions_onatge.hores_onatge.selectedIndex<4){ 
document.opcions_onatge.hores_onatge.selectedIndex=document.opcions_onatge.hores_onatge.selectedIndex+1
veure_imatge()
}

}

function endarrera()
{
if (document.opcions_onatge.hores_onatge.selectedIndex>0) 
document.opcions_onatge.hores_onatge.selectedIndex=document.opcions_onatge.hores_onatge.selectedIndex-1;
veure_imatge();
}

