
cnt=0;
function scroll_win(){
window.scrollBy(0,6);
cnt++;
if(cnt>300){
clearTimeout(MyID);
return;
}
MyID=setTimeout("scroll_win()",200);
}



