function veure_imatge()
{

if (!document.images)
return 
document.getElementById("precipitacions").src = document.getElementById("hores_precip").value;
}


function veure_imatge_temp()
{
if (!document.images)
return 
document.getElementById("temperatures").src = document.getElementById("hores_temp").value;
}

function veure_imatge_pressio()
{
if (!document.images)
return 
document.getElementById("pressio").src = document.getElementById("hores_pressio").value;
}


function endavant()
{
if (document.opcions_precip.hores_precip.selectedIndex<27){ 
document.opcions_precip.hores_precip.selectedIndex=document.opcions_precip.hores_precip.selectedIndex+1
veure_imatge()
}

}

function endarrera()
{
if (document.opcions_precip.hores_precip.selectedIndex>0) 
document.opcions_precip.hores_precip.selectedIndex=document.opcions_precip.hores_precip.selectedIndex-1;
veure_imatge();
}

function endavant_temp()
{
if (document.opcions_temp.hores_temp.selectedIndex<28){ 
document.opcions_temp.hores_temp.selectedIndex=document.opcions_temp.hores_temp.selectedIndex+1
veure_imatge_temp()
}

}

function endarrera_temp()
{
if (document.opcions_temp.hores_temp.selectedIndex>0) 
document.opcions_temp.hores_temp.selectedIndex=document.opcions_temp.hores_temp.selectedIndex-1;
veure_imatge_temp();
}

function endavant_pres()
{
if (document.opcions_pressio.hores_pressio.selectedIndex<28){ 
document.opcions_pressio.hores_pressio.selectedIndex=document.opcions_pressio.hores_pressio.selectedIndex+1
veure_imatge_pressio()
}

}

function endarrera_pres()
{
if (document.opcions_pressio.hores_pressio.selectedIndex>0) 
document.opcions_pressio.hores_pressio.selectedIndex=document.opcions_pressio.hores_pressio.selectedIndex-1;
veure_imatge_pressio();
}
