function initToolbar() 
  {      
  		tb = new Ext.Toolbar('toolbarDiv'); 
		tb.addText('<b>your text goes here</b>');
		tb.addFill(); 
  	  	tb.addButton({
		cls:"x-btn-text-icon",
		icon:"/img/information.png",
		handler:onHelp
		});	
		
		
  }
  
 function onHelp()
{
		 ColdFusion.Window.create('WindowHelp', 'Your help test goes here',
        '/inc/help/helpMessaging.cfm',
        {x:100,y:100,height:400,width:600, padding:0, modal:true,closable:true,
        draggable:true,resizable:true,center:true,initshow:true,
        minheight:200,minwidth:200 })
}


  