var isAutoRefreshPage = false;
 
// ----------------------------------------------------------------------------
// BodyOnLoad is associated with the body tag in the template
// for pages that need additional BodyOnLoad functionality use a different document head
// ----------------------------------------------------------------------------
function BodyOnLoad()
{
	setWebTrendsContent();
}
// ----------------------------------------------------------------------------
// Used for WebTrends
// ----------------------------------------------------------------------------
function setWebTrendsContent()
{
    // assign document title to WebTrends tag
    var docTitle = document.title;
    if( docTitle != null && docTitle != '' ) {
        docTitle = docTitle.replace('Briefing.com: ','');
        docTitle = docTitle.replace(/ /g, '');
        if( document.getElementById('WT.pi') ) {
            var productName = document.getElementById('WT.pi').content;
            document.getElementById('WT.pi').content = productName+'-'+docTitle;
        }
    }
}
