function hidePubOverlay(sId)
{
	var obj = document.getElementById(sId);
	
	if (obj)
	{
		obj.style.display = 'none';
	}
}
