function desce(){
var el = document.getElementById("listagem");
el.scrollTop += 10;
}

function descer(){
tempo = window.setInterval(function(){ desce(); }, 100);
}

function sobe(){
var el = document.getElementById("listagem");
el.scrollTop -= 10;
}

function subir(){
tempo = window.setInterval(function(){ sobe(); }, 100);
}

function parar(){
window.clearInterval(tempo);
}


<!--
function carregar(imagem,nome,detalhe,links, categoria) {
document.getElementById("produto_destaque").innerHTML="<img src='"+imagem+"' height=366 width=366 border=0>";
document.getElementById("titulo_produto").innerHTML=nome;
document.getElementById("detalhes_produto").innerHTML=detalhe;
document.getElementById("categoria_p").innerHTML=categoria;
document.getElementById("link_mais_detalhes").href="?page=detalhes_produto&pro="+links;
}
//-->

