﻿function LMStop()
{
	obj=document.getElementById("LinkMarquee");
	obj.stop();
}
function LMStart()
{
	obj=document.getElementById("LinkMarquee");
    obj.start();
}
function UpSpeed()
{
	obj=document.getElementById("LinkMarquee");
    obj.direction='up';
    obj.scrollAmount=6;            
}
function DownSpeed()
{
    obj=document.getElementById("LinkMarquee");
    obj.direction='down';
    obj.scrollAmount=6;                        
}
function NormalSpeed()
{
    obj=document.getElementById("LinkMarquee");         
    obj.scrollAmount=1;                        
}

