function hdrXorPopUp(hdrBottomItem)
{
	if (hdrBottomItem.style.display=='none')
	{
		hdrBottomItem.style.display='block';
		eval ('top.State' + hdrBottomItem.id + '=true;');
	}
	else
	{
		hdrBottomItem.style.display='none';
		eval ('top.State' + hdrBottomItem.id + '=false;');
	}
}
