function ShowThemAll()
{
	// ceeHtml defined in another script
	
	if( !IsHeadlinesHtmlEmpty( CEE_Html ) )
	{
		var top = '<div id="xsnazzy2" class="BNS-Container">'
			+ '<b class="xtop"><b class="xb1"></b><b class="xb2"></b><b class="xb3"></b><b class="xb4"></b></b>'
			+ '<div class="xboxcontent">'
			+ '<div class="LegendContainerBNS"> &nbsp;&nbsp;Refresh for News Updates...</div>';
		var modDate = '<div class="BNS-LastModified">Last Updated: <span class="BNS-LastModified-Date">' + CEE_Html_lastModified + '</span></div>';
		var bottom = '</div>'
			+ '<b class="xbottom"><b class="xb4"></b><b class="xb3"></b><b class="xb2"></b><b class="xb1"></b></b>'
			+ '</div>';

		CEE_Html = top.concat( modDate ).concat( CEE_Html ).concat( bottom );

		ShowHeadlines( "CEE_Headlines", CEE_Html );
	}
}

ShowThemAll();


		
