function dypNotice(id, state){
    var obj = document.getElementById(id)
    
    if (obj) {
        obj.style.visibility = state;
    }
}
