// JavaScript Document
function moverDown()
{

  sl = document.getElementById('capaTexto').scrollTop;
  document.getElementById('capaTexto').scrollTop= (sl + 70);

}
function moverUp()
{

  sl = document.getElementById('capaTexto').scrollTop;
  document.getElementById('capaTexto').scrollTop= (sl - 70);

}