// JavaScript Document
function dropdown(myId) {
var theLayer = document.getElementById(myId);
if(theLayer.style.visibility=="hidden"){
	theLayer.style.visibility="visible";
	}else{
	theLayer.style.visibility="hidden";
	}
}