function hiddenLayer(ID) {
//        document.getElementById(ID).style.visibility = "hidden";
        document.getElementById(ID).style.display = 'none';
}
function showLayer(ID) {
//        document.getElementById(ID).style.visibility = "visible";
        document.getElementById(ID).style.display = 'block';
}
function hide_(ID) {

        document.getElementById(ID).style.background = '#656565';
}
function show_(ID) {
        document.getElementById(ID).style.background = '#d9241c';
        
}
