var now = false;
 
function show(id, event)
{
hide();
document.getElementById(id).style.display = 'block';
now = id;
event.stopPropagation();
}
 
var tag;
 
function hide()
{
	if(now)
	{
	document.getElementById(now).style.display = 'none';
	}
}
