﻿// JScript File

function ClickToolbar(ControlName) 
{    
    var obj = GetControl(ControlName);
    if (obj == null)
    {
        alert("Cannot locate " + ControlName);
    }
    else
    {
//        obj.style.backgroundimage='none';
        obj.style.backgroundColor = 'Silver';        
    }            
}


function GetControl(controlname)
{
    return document.getElementById(controlname);
}