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

