switch ( document.location.host ) 
{ 
//	Disable the domains in DEV, SIT, and UAT when you are done with them as this logic will prevent CBOL testing.
	case "acs-dvl11.ny.ssmb.com" : 
   	case "accstg.smithbarney.com" :
   	case "acc-uat.smithbarney.com" :
	case "www.smithbarney.com" :
		// If the domain contains any of the above hosts and is the TOP window then CBOL header should *never* be displayed 03AUG2007
		if( self != top )
		{
			check_for_cbol();
			break; 
		}
   	default : 
		check_for_cbol();
} 

function check_for_cbol()
{
	if( cbol_user )
	{
		document.write('<scr' + 'ipt src="http://fa.smithbarney.com/js/locator-js/CBOL/branding.js"></scr' + 'ipt>');
		document.write('<style type="text/css">@import url(http://fa.smithbarney.com/css/locator-css/new/base.css);</style>');
		document.write('<style type="text/css">@import url(http://fa.smithbarney.com/css/locator-css/new/CBOL.css);</style>');
		if(typeof sa_highlight != "undefined"){
			if(sa_highlight=="2"){
				document.write('<style type="text/css">@import url(http://fa.smithbarney.com/css/locator-css/new/research.css);</style>');
			}
		}
	}
}