﻿function myToggle(id){
    var obj = myObj(id);
    if(obj.style.display=='none'){
        obj.style.display='block';
    } else {
        obj.style.display='none';
    }
}
function myObj(id){
    return document.getElementById(id);
}

function changeMenuItem(cell,status) {
    var id = myObj(cell);
    if (status == "true") {
        id.style.backgroundColor = "#331c86";
    }
    else {
        id.style.backgroundColor = "#f58220";
    }
}