<!--
function LmOver(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#CC0033";
elem.style.cursor = 'hand'}

function LmOut(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#FFFFFF";}

function LmDown(elem,clr)
{
elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#FFFFFF";
}

function LmUp(path,elem,clr)
{location.href = path;
elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#CC0033";}
//-->
