function startscroll() {
startit();
}

function startit() {
scrollobj=setInterval("scroller()",40);
}

function stopit() {
scrollobj=clearInterval(scrollobj);
}



function scroller() {
box = document.getElementById("kiemelt_container"); 
if ((box.style.top.substr(0,box.style.top.length-2))>(-(box.style.height.substr(0,box.style.height.length-2)-330))){
box.style.top = ((box.style.top.substr(0,box.style.top.length-2))-1)+"px";}else{box.style.top="0px";}
}
