// JavaScript Document
function show(dropdown) 
{
 document.getElementById(dropdown).style.visibility="visible";
}
function hide(dropdown) 
{
 document.getElementById(dropdown).style.visibility="hidden";
}
