function mo(a, b)
{
ctrl=document.getElementById(b);
if (ctrl)
{ 
if (a=='over')
{
ctrl.className="tm_over";
}

else
{
ctrl.className="tm";
}
}
}