scrollPos = 0
speed=1
scrollMe=""
scrollLP = 0
scrollRP = 0
function scrollDown() {
clearTimeout(scrollMe)
if(scrollLP){
	curtp=scrollLP
}else{
	curtp=0
}
scrollPos +=speed
window.frames["News"].scrollTo(curtp,scrollPos)
scrollMe=setTimeout("scrollDown()",50)

if(scrollPos>window.frames["News"].document.body.scrollHeight - (parseInt(document.getElementById("News").style.height)-10)){
scrollPos=window.frames["News"].document.body.scrollHeight - (parseInt(document.getElementById("News").style.height)-10) 
clearTimeout(scrollMe)
}
}
function scrollUp() {
clearTimeout(scrollMe)
if(scrollLP){
	curtp=scrollLP
}else{
	curtp=0
}
scrollPos -=speed
window.frames["News"].scrollTo(curtp,scrollPos)
scrollMe=setTimeout("scrollUp()",50)

if(scrollPos<speed){
scrollPos=0
clearTimeout(scrollMe)
}
}
function stopMe(){
clearTimeout(scrollMe)
}
