function scroll(n)
{temp=n;
News.scrollTop=News.scrollTop+temp;
if (temp==0) return;
setTimeout("scroll(temp)",20);
}

function scroll_1(n)
{temp=n;
contents.scrollTop=contents.scrollTop+temp;
if (temp==0) return;
setTimeout("scroll_1(temp)",20);
}

function scroll_2(n)
{temp=n;
contents.scrollTop=contents.scrollTop+temp;
if (contents.scrollTop % n != 0 ){
clearTimeout(interval01);
contents.scrollTop=0;
iniautoslide();
}
if (temp==0) return;
}