function mover(direccion)
{             
   if (direccion == "subir")
   {
      setImagenOnOff('flecha_up', 'on', 'jpg'); 
      document.getElementById("flecha_up").style.cursor = "pointer";
      flecha = setInterval("subir()", 50);
   }
   else if (direccion == "bajar")
   {
      setImagenOnOff('flecha_bottom', 'on', 'jpg');
      document.getElementById("flecha_bottom").style.cursor = "pointer";
      flecha = setInterval("bajar()", 50);
   }
}

function detener()
{
   clearInterval(flecha);
   setImagenOnOff('flecha_up', 'off', 'jpg');
   document.getElementById("flecha_up").style.cursor = "default";
   setImagenOnOff('flecha_bottom', 'off', 'jpg');
   document.getElementById("flecha_bottom").style.cursor = "default";
}

function subir()
{
  document.getElementById("contenidos").scrollTop -= 5;
}

function bajar()
{
  document.getElementById("contenidos").scrollTop += 5;
}
