

function showHideDiv(objid)
{
	if ($(objid).style.display == 'none')
	{
		$(objid).show();
		$('a' + objid).style.fontWeight="bold";
	}
	else
	{
		$(objid).hide();
		$('a' + objid).style.fontWeight="normal";

	}
}

