var timerID;
var basey=0;
var baseyp=0;

function defilright() {

window.liste.scrollTo(basey,0);
basey = basey + 2;
}

function gotoright() {
    timerID=setInterval("defilright()",10);
}

function defilleft() {

window.liste.scrollTo(basey,0);
if (basey > 0) { basey = basey - 2; }
}

function gotoleft() {
    timerID=setInterval("defilleft()",10);
}


function stop() {
clearInterval(timerID);
}


function defiltop() {

window.liste.scrollTo(0,basey);
basey = basey + 2;
}

function gototop() {
    timerID=setInterval("defiltop()",10);
}

function defilbottom() {

window.liste.scrollTo(0,basey);
if (basey > 0) { basey = basey - 2; }
}

function gotobottom() {
    timerID=setInterval("defilbottom()",10);
}




function defiltop1() {

window.liste1.scrollTo(0,baseyp);
baseyp = baseyp + 2;
}

function gototop1() {
    timerID=setInterval("defiltop1()",10);
}

function defilbottom1() {

window.liste1.scrollTo(0,baseyp);
if (baseyp > 0) { baseyp = baseyp - 2; }
}

function gotobottom1() {
    timerID=setInterval("defilbottom1()",10);
}