function show_hide(divid, show)
{
	if (tbl = document.getElementById(divid))
	{
		if (null == show) show = tbl.style.display == 'none';
		tbl.style.display = (show ? '' : 'none');
	}
}
