function highlight(id,status)
{
    var but_obj = document.getElementById(id);
    if(status == 1)
    {
        but_obj.style.backgroundPosition = 'bottom';
        but_obj.style.cursor = 'pointer';
    }
    else
    {
        but_obj.style.backgroundPosition = 'top';
    }
}

