function setOvertop(str)
{
//document.getElementById(str).style.color="#ff0000";

document.getElementById(str).style.textDecoration="underline";
}
function setOuttop(str)
{
//document.getElementById(str).style.color="#ff0000";

document.getElementById(str).style.textDecoration="none";
}
