var timer=0;

function scroll() {
	     parent.frames[1].window.scrollBy(0,1);
timer=setTimeout("scroll()", 30);
}
//================================
function stop(){
clearInterval(timer);
}


//================================


function gotonext() {	


  clearInterval(timer);


  parent.frames["inhalt1"].window.scrollBy(0,350);    


}





function goup() {	


  clearInterval(timer);


  parent.frames["inhalt1"].window.scrollBy(0,-350);    


}