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