function Stop(id){id.stop();}
function Start(id1){
	id1.start();
	} var nScrollDelay = 25;  function movement(dire){ IncreaseSpeed(); _ctl15_mar.start(); _ctl15_mar.direction=dire; }  var isMoving = true;  function mov(){ 	if(isMoving){ _ctl15_mar.stop();  isMoving = false;}  else{ _ctl15_mar.start();  isMoving = true; }  }  function IncreaseSpeed() {  if(nScrollDelay > 10 && nScrollDelay<10000){  nScrollDelay -= 2 ; _ctl15_mar.scrollDelay = nScrollDelay; _ctl15_mar.trueSpeed = 1; _ctl15_mar.scrollAmount = 1; }else if(nScrollDelay > 10000) { nScrollDelay = 25 ; _ctl15_mar.scrollDelay = nScrollDelay; _ctl15_mar.trueSpeed = 1; _ctl15_mar.scrollAmount = 1; }}  function DecreaseSpeed(){ 	if(nScrollDelay < 40){ 	nScrollDelay += 5; _ctl15_mar.scrollDelay = nScrollDelay ; _ctl15_mar.trueSpeed = 1; _ctl15_mar.scrollAmount = 1;} 	else if(nScrollDelay > 10000){ 	nScrollDelay = 25 ; _ctl15_mar.scrollDelay = nScrollDelay; _ctl15_mar.trueSpeed = 1; _ctl15_mar.scrollAmount = 1;}}
function resetMar(id){
     id.scrollTop = 120 ; 
	 id.stop();
}

	

