﻿
function rollover(imgID, blnSwitch)
{
    try
    {
        if (blnSwitch==true)
        {
            imgID.style.color = "#767146";
        }
        else
        {
            imgID.style.color = "#000000";
        }
        
        
        //document.getElementById("ctl00_" + imgID).src = imgSrc; 
    }
    
    catch(err)
    {
        alert(err.description);
    }
    
    
}
