function show(objectid)
{
	var box=document.getElementById(objectid);
	box.style.visibility = 'visible';
}

function hide(objectid)
{
	var box=document.getElementById(objectid);
	box.style.visibility = 'hidden';
}

