function nyitzar(ELEM) {
       if(ELEM.length > 0) {
                var KONKRETLAYER = document.getElementById(ELEM);
                     newDisplay = KONKRETLAYER.style.display == 'none' ? 'block' : 'none';
                KONKRETLAYER.style.display = newDisplay;
                                 }
 }
