	flag=0;
	boxhi=-540;
	sendstep=-1;
	t=100;
	st=140;
if(window.addEventListener){
	window.addEventListener('load',mymove,false)
}
else if(window.attachEvent){
	window.attachEvent('onload',mymove)
}


	
	function mymove(){
//	alert("aho");
		a=document.getElementById('inner');
	}
	function mydown(){
//	alert(flag);
		var n=a.offsetTop;
		if(n<boxhi){n=st;}else if(n>st){n=boxhi;}
		a.style.top=n+sendstep+'px';
	
	}
	function newsstop(){
		clearInterval(newsscroll);
		flag=0;
	}
	function restart(){
		if(flag==0){
			newsscroll=setInterval('mydown()',t);	
			flag=1;
		}
	}
	function reverse(){
		sendstep=sendstep*-1;
	}
