﻿// JScript File

function setHighlightBackground(cid)
{
    var c = document.getElementById(cid);
    if (!c._storeBg)
    {
        c._storeBg = c.style.backgroundColor;
        c.style.backgroundColor = "#F4E598";
    }
}

function setNormalBackground(cid)
{
   var c = document.getElementById(cid);
   c.style.backgroundColor = c._storeBg;
   c._storeBg = null;
}


