// JavaScript Document
function dropDown(obj)

			{
				obj = document.getElementById(obj);
				obj.style.visibility = 'visible';
			}

function popUp(obj)

			{
				obj = document.getElementById(obj);
				obj.style.visibility = 'hidden';
			}