
function handleparent(parentID){
    myparent = document.getElementById(parentID)
    if (myparent.style.display=="none") {
        myparent.style.display = "block"
       
    } else {
        myparent.style.display = "none"
       
    }
} 
