function drop(elm) {

    elm = document.getElementById(elm);
    elm.style.display = (elm.style.display=="") ? "none" : ""; 

}