﻿// JScript File
function changeColor(tag,img)
{
   tag.style.color="#1CBCB4";
   document.getElementById(img).src = "images/GreenBox.gif";
   //tag.style.fontWeight="bold";
   
   
}
function changeToPreviousColor(tag,img)
{
    tag.style.color="#000000";
    document.getElementById(img).src = "images/EmptyBox.gif";
     //tag.style.fontWeight="normal";
}
