function mOver(elem,bkgnd,ftcol)
{
   elem.style.backgroundColor=bkgnd;
   elem.style.color=ftcol;
}

function mOut(elem,ftcol,bkgnd)
{
   elem.style.backgroundColor=bkgnd;
   elem.style.color=ftcol;
}