/*ドロップダウンを隠す*/

function hideDrops() {
    if (document.getElementById) 
 { drops.style.visibility = "hidden"; }
    }


/*ドロップダウンのセット*/

function setElement() {
    if (document.getElementById) {
            drops = document.getElementById("drop");
        }
    }


/*ドロップダウンの実行*/
function showDrop(index) {
    if (document.getElementById) {
        hideDrops();
        drops.style.visibility = "visible";
    }
}