function linkOver (obj)
{
    obj.style.textDecoration = "underline";
}


function linkOut (obj)
{
    obj.style.textDecoration = "none";
}