function show(obj)
{
    obj.style.backgroundColor="#dddddd";
    obj.style.filter="alpha(opacity=60)";
    obj.style.color="#ff0000";
   
}

function hide(obj)
{
   obj.style.backgroundColor="#ffffff";
   obj.style.filter="alpha(opacity=80)";
   obj.style.color="#000000";
    
}