function start(){
minuterie="";}


function up(){
if(dlib.layers('texte').top()>=130)
stop();
dlib.layers("texte").scrollV(5);
}

function down(){
posMax=parseInt(dlib.layers('texte').height());
posMax += dlib.layers('texte').top();

if(posMax<=380){
stop();}

dlib.layers("texte").scrollV(-5);
}

function stop(){
clearInterval(minuterie);
}
