	function FutureIncreaseSpeed()
			{	
				var z=document.getElementById('marquee1');
				var x=z.scrollDelay;
				x=x-5
				if(x<10)
					x=10
				
				marquee1.scrollDelay=x;
				return false;				
			}
	function FutureDecreaseSpeed()
			{	var z=document.getElementById('marquee1');
				var x=z.scrollDelay;
				x=x+5
				if(x>35)
					x=35
				
				marquee1.scrollDelay=x;
				return false;					
			}
	function SpotIncreaseSpeed()
			{		
			var z=document.getElementById('marqueeSpot');
				var x=z.scrollDelay;
				x=x-5
				if(x<10)
					x=10
				
				z.scrollDelay=x;
				return false;				
			}
	function SpotDecreaseSpeed()
	
			{	var z=document.getElementById('marqueeSpot');
			var x=z.scrollDelay;
				x=x+5
				if(x>35)
					x=35
				
				z.scrollDelay=x;
				return false;					
			}
		function LeftFutureClick()
		
			{	var z=document.getElementById('marquee1');
			z.start();
				z.direction="left";
				 z.scrollAmount="1";
				z. scrollDelay="20";
				return false;				
			}
		function RightFutureClick()
			{
				var z=document.getElementById('marquee1');
				z.start();
				z.direction="right";	
				z.scrollAmount="1";
				z. scrollDelay="20";				
				return false;				
			}			
		function LeftSpotClick()
		
			{	var z=document.getElementById('marqueeSpot');
			z.start();
				z.direction="left";
				 z.scrollAmount="1";
				z. scrollDelay="20";
				return false;				
			}
		function RightSpotClick()
			{var z=document.getElementById('marqueeSpot');
			z.start();
				z.direction="right";
				z.scrollAmount="1";
				z. scrollDelay="20";				
				return false;				
			}   