function showhide(ibox) 
{
	obj = document.getElementById(ibox);
	obj.style.display = obj.style.display ==  'block' ? 'none' : 'block';
}
