function scroller(name){
	if(!gO(name+'_Place'))return;
	if(window.current_scroll[name]<0){
		window.current_scroll[name]=window.current_scroll[name]+(window.speed/(window.res/10));
		return;
		}
	
	lay_1=window.current_news[name];
	lay_2=lay_1+1;
		
	if(lay_2>window.max_news[name]){
		lay_2=1
		}

	View_Area_Width=getWidth(name+'_Place');
	View_Area_Height=getHeight(name+'_Place');

	Lay_1_Pos_Y= -window.current_scroll[name];
	Lay_2_Pos_Y= Lay_1_Pos_Y + (View_Area_Height);
	
	Lay_1_Pos_T= -Lay_1_Pos_Y;
	Lay_2_Pos_T= -Lay_2_Pos_Y;

	Lay_1_Pos_B= View_Area_Height;
	Lay_2_Pos_B= View_Area_Height-Lay_2_Pos_Y;

	if(navigator.userAgent.indexOf("Opera")==-1&&(document.getElementById||document.layers)){

		if(!document.layers){
			setClip('News_'+lay_1,0,Lay_1_Pos_T,View_Area_Width,Lay_1_Pos_B);
			setClip('News_'+lay_2,0,Lay_2_Pos_T,View_Area_Width,Lay_2_Pos_B);
			}
		move(name+'_'+lay_1,null,Lay_1_Pos_Y);
		move(name+'_'+lay_2,null,Lay_2_Pos_Y);
		
		setVisible(name+'_'+lay_1,true);
		setVisible(name+'_'+lay_2,true);
		}
	
	window.current_scroll[name]=window.current_scroll[name]+(window.speed/(window.res/10));

	if(window.current_scroll[name]>View_Area_Height){

		setVisible(name+'_'+lay_1,false);
		move(name+'_'+lay_2,null,0);
		setVisible(name+'_'+lay_2,true);
		
		window.current_news[name]=window.current_news[name]+1;
		if(window.current_news[name]>window.max_news[name])window.current_news[name]=1;
			window.current_scroll[name]=-((window.pause/window.res)*(window.speed/(window.res/10)));
		}

	}
function SnapNews(name){
	if(!gO(name+'_Place'))return;
	if(!window.scroll_timer)window.scroll_timer=new Array(String());
	if(window.scroll_timer[name])clearInterval(window.scroll_timer[name]);
	window.scroll_timer[name]=false;
	}

function ReleaseScroller(name){
	if(!gO(name+'_Place'))return;
	if(!window.scroll_timer)window.scroll_timer=new Array(String());
	if(window.max_news[name]>1){
		if(!window.current_scroll){
			window.current_scroll=new Array(String());
			}
		if(!window.current_news){
			window.current_news=new Array(String());
			}
		if(!window.current_scroll[name]&&!window.current_news[name]){
			window.current_scroll[name]=-((window.pause/window.res)*(window.speed/(window.res/10)));
			window.current_news[name]=1;
			}
		if(!window.scroll_timer[name])window.scroll_timer[name]=setInterval('scroller(\''+name+'\');',window.res);
		}
	}