function showdropdown() {
document.getElementById("dropdown").style.display = "block";
}


function hidedropdown() {
 document.getElementById("dropdown").style.display = "none";
}