function drop(id)
				{
				
					document.getElementById(id).style.visibility='visible';
				
				}
				
				function disappear(id)
				{
				
					document.getElementById(id).style.visibility='hidden';
								
				}
