// JavaScript Document
function dropDown(id)
{
	document.getElementById(id).style.visibility="visible";
}
function dropUp(id)
{
	document.getElementById(id).style.visibility="hidden";
}