function initTogglesCIMEButtons(inObjLst, inButtonLst){
for (i = 0; i< inButtonLst.length; i++){
inButton = document.getElementById(inButtonLst[i])
if (inButton){
inButton.classList.remove('w3-opacity-max')
}
}
for (i = 0; i< inObjLst.length; i++){
inObj = document.getElementById(inObjLst[i])
if (inObj){
inObj.style.display = 'none'
}
}
}
function toggleCIMEButtons(inObjLst, inButtonLst, inObjName, inButtonName){
initTogglesCIMEButtons(inObjLst, inButtonLst)
var vObj = document.getElementById(inObjName)
var vButton = document.getElementById(inButtonName)
if (vObj.style.display != 'block'){
vObj.style.display = 'block'
vButton.classList.add('w3-opacity-max')
}
}
Subscribe to our Newsletter


