home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-macos9-1.3.1.sea.bin / Mozilla1.3.1 / Chrome / comm.jar / content / navigator / navigator.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  21KB  |  421 lines

  1. <?xml version="1.0"?> <!-- -*- Mode: HTML -*- --> 
  2.  
  3. <!-- The contents of this file are subject to the Netscape Public
  4. License Version 1.1 (the "License"); you may not use this file
  5. except in compliance with the License. You may obtain a copy of
  6. the License at http://www.mozilla.org/NPL/
  7.  
  8. Software distributed under the License is distributed on an "AS
  9. IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10. implied. See the License for the specific language governing
  11. rights and limitations under the License.
  12.  
  13. The Original Code is Mozilla Communicator client code, released
  14. March 31, 1998.
  15.  
  16. The Initial Developer of the Original Code is Netscape
  17. Communications Corporation. Portions created by Netscape are
  18. Copyright (C) 1998-2000 Netscape Communications Corporation. All
  19. Rights Reserved.
  20.  
  21. Contributor(s):
  22.     Dean Tessman <dean_tessman@hotmail.com>
  23. -->
  24.  
  25.  
  26. <?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?> 
  27.  
  28. <?xul-overlay href="chrome://navigator/content/navigatorOverlay.xul"?>
  29. <?xul-overlay href="chrome://navigator/content/navExtraOverlay.xul"?>
  30. <?xul-overlay href="chrome://navigator/content/linkToolbarOverlay.xul"?>
  31. <?xul-overlay href="chrome://communicator/content/contentAreaContextOverlay.xul"?>
  32. <?xul-overlay href="chrome://communicator/content/sidebar/sidebarOverlay.xul"?>
  33. <?xul-overlay href="chrome://communicator/content/communicatorOverlay.xul"?>
  34. <?xul-overlay href="chrome://communicator/content/bookmarks/bookmarksOverlay.xul"?>
  35.  
  36.  
  37. <!DOCTYPE window [
  38. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  39. %brandDTD;
  40. <!ENTITY % buildDTD SYSTEM "chrome://global/content/build.dtd" >
  41. %buildDTD;
  42. <!ENTITY % navigatorDTD SYSTEM "chrome://navigator/locale/navigator.dtd" >
  43. %navigatorDTD;
  44. ]>
  45.  
  46. <window id="main-window"
  47.         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  48.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  49.         onload="Startup()" onunload="Shutdown()"
  50.         contenttitlesetting="true"
  51.         title="&mainWindow.title;" 
  52.         titlemodifier="&mainWindow.titlemodifier;" 
  53.         titlemenuseparator="&mainWindow.titlemodifiermenuseparator;"
  54.         windowtype="navigator:browser"
  55.         width="610" height="450"
  56.         screenX="4" screenY="4"
  57.         persist="screenX screenY width height sizemode"> 
  58.  
  59.   <!-- Generic Utility -->
  60.   <script type="application/x-javascript" src="chrome://global/content/nsUserSettings.js"/>
  61.   <script type="application/x-javascript" src="chrome://global/content/nsTransferable.js"/>
  62.   <script type="application/x-javascript" src="chrome://global/content/nsClipboard.js"/>
  63.   <script type="application/x-javascript" src="chrome://global/content/nsDragAndDrop.js"/>
  64.   <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  65.   <script type="application/x-javascript" src="chrome://global/content/fullScreen.js"/>
  66.   
  67.   <!-- Content Area -->
  68.   <script type="application/x-javascript" src="chrome://navigator/content/nsBrowserStatusHandler.js"/>
  69.   <script type="application/x-javascript" src="chrome://navigator/content/nsBrowserContentListener.js"/>
  70.   <script type="application/x-javascript" src="chrome://communicator/content/contentAreaClick.js"/>
  71.   <script type="application/x-javascript" src="chrome://communicator/content/contentAreaDD.js"/>
  72.   <script type="application/x-javascript" src="chrome://communicator/content/findUtils.js"/>
  73.   <script type="application/x-javascript" src="chrome://communicator/content/printing.js"/>
  74.  
  75.   <!-- Shared Bookmarks Utility Library -->
  76.   <script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksOverlay.js"/>
  77.   <script type="application/x-javascript" src="chrome://navigator/content/personalToolbar.js"/>
  78.   
  79.   <!-- Navigator -->
  80.   <script type="application/x-javascript" src="chrome://navigator/content/browser.js"/>
  81.   <script type="application/x-javascript" src="chrome://navigator/content/navigator.js"/>
  82.   <script type="application/x-javascript" src="chrome://navigator/content/navigatorDD.js"/>
  83.   <script type="application/x-javascript" src="chrome://navigator/content/sessionHistoryUI.js"/>
  84.  
  85.   <!-- hook for stringbundle overlays -->
  86.   <stringbundleset id="stringbundleset">
  87.     <stringbundle id="bundle_navigator" src="chrome://navigator/locale/navigator.properties"/>
  88.     <stringbundle id="bundle_brand" src="chrome://global/locale/brand.properties"/>
  89.     <stringbundle id="bundle_navigator_region" src="chrome://navigator-region/locale/region.properties"/>
  90.     <stringbundle id="bundle_brand_region" src="chrome://global-region/locale/region.properties"/>
  91.     <stringbundle id="findBundle" src="chrome://global/locale/finddialog.properties"/>
  92.   </stringbundleset>
  93.  
  94.   <commandset id="commands">    
  95.     <commandset id="globalEditMenuItems"/>
  96.     <commandset id="selectEditMenuItems"/>
  97.     <commandset id="undoEditMenuItems"/>
  98.     <commandset id="clipboardEditMenuItems"/>
  99.     <!-- <command id="cmd_pageSetup"/> -->
  100.     <command id="toggleSidebar"/>
  101.   </commandset>
  102.     
  103.   <!-- broadcasters are appended from the overlay -->
  104.   <broadcasterset id="navBroadcasters"/>
  105.    
  106.   <!-- keys are appended from the overlay -->
  107.   <keyset id="navKeys">
  108.     <key id="showHideSidebar"/>
  109.   </keyset>
  110.   
  111.   <popup id="backMenu" position="after_start" onpopupshowing="return BrowserBackMenu(event);" oncommand="gotoHistoryIndex(event);"/>
  112.   <popup id="forwardMenu" position="after_start" onpopupshowing="return BrowserForwardMenu(event);" oncommand="gotoHistoryIndex(event);"/>
  113.   <tooltip id="aHTMLTooltip" onpopupshowing="return FillInHTMLTooltip(document.tooltipNode);"/>
  114.   <popup id="sidebarPopup"/>
  115.  
  116.   <popupset id="bookmarksPopupset"/>
  117.  
  118.   <!-- context menu -->
  119.   <popupset id="contentAreaContextSet"/>
  120.  
  121.   <script type="application/x-javascript">
  122.     var gBookmarkPopup = null;
  123.   </script>
  124.  
  125.   <toolbox id="navigator-toolbox" class="toolbox-top" deferattached="true">
  126.     <!-- Menu -->
  127.     <menubar id="main-menubar" persist="collapsed" grippytooltiptext="&menuBar.tooltip;"/>
  128.  
  129.     <toolbar class="toolbar-primary chromeclass-toolbar" id="nav-bar" persist="collapsed" 
  130.              grippytooltiptext="&navigationToolbar.tooltip;"
  131.              tbalign="stretch" fullscreentoolbar="true">
  132.       <hbox id="nav-bar-buttons">
  133.         <toolbarbutton id="back-button" type="menu-button" class="toolbarbutton-1"
  134.                        label="&backButton.label;"
  135.                        oncommand="if (event.target==this) BrowserBack(); else gotoHistoryIndex(event);"
  136.                        observes="canGoBack" context="backMenu"
  137.                        tooltiptext="&backButton.tooltip;">
  138.           <menupopup context="" onpopupshowing="BrowserBackMenu(event);"/>
  139.         </toolbarbutton>
  140.         
  141.         <toolbarbutton id="forward-button" type="menu-button" class="toolbarbutton-1"
  142.                        label="&forwardButton.label;"
  143.                        oncommand="if (event.target==this) BrowserForward(); else gotoHistoryIndex(event);"
  144.                        observes="canGoForward" context="forwardMenu"
  145.                        tooltiptext="&forwardButton.tooltip;">
  146.           <menupopup context="" onpopupshowing="BrowserForwardMenu(event);"/>
  147.         </toolbarbutton>
  148.         
  149.         <toolbarbutton id="reload-button" class="toolbarbutton-1"
  150.                        label="&reloadButton.label;"
  151.                        oncommand="if (event.shiftKey) BrowserReloadSkipCache(); else BrowserReload();"  
  152.                        tooltiptext="&reloadButton.tooltip;"/>
  153.                        
  154.         <toolbarbutton id="stop-button" class="toolbarbutton-1"
  155.                        label="&stopButton.label;"
  156.                        oncommand="BrowserStop();" observes="canStop"  
  157.                        tooltiptext="&stopButton.tooltip;"/>
  158.       </hbox>
  159.  
  160.       <hbox id="nav-bar-inner" flex="1">
  161.         <textbox id="urlbar" class="chromeclass-location uri-element" flex="1"
  162.                  type="autocomplete" searchSessions="history" 
  163.                  timeout="50" maxrows="6" alwaysopenpopup="true"
  164.                  disablehistory="false" accesskey="&locationBar.accesskey;"
  165.                  defaultSearchEngine="true" tabScrolling="true"
  166.                  showCommentColumn="true"
  167.                  inputtooltiptext="&locationBar.tooltip;"
  168.                  oninput="window.XULBrowserWindow.userTyped.value=true;"
  169.                  ontextcommand="return handleURLBarCommand(eventParam, domEvent);"
  170.                  ontextrevert="return handleURLBarRevert();"
  171.                  onfocus="URLBarFocusHandler(event);"
  172.                  onmousedown="URLBarMouseDownHandler(event);"
  173.                  onclick="URLBarClickHandler(event);">
  174.           <deck id="page-proxy-deck">
  175.             <image id="page-proxy-button"
  176.                    ondraggesture="PageProxyDragGesture(event);"
  177.                    tooltiptext="&proxyIcon.tooltip;"/>
  178.             <image id="page-proxy-favicon" validate="never"
  179.                    ondraggesture="PageProxyDragGesture(event);"
  180.                    onload="this.parentNode.selectedIndex = 1;
  181.                            event.stopPropagation();
  182.                            event.preventBubble();
  183.                            HandleBookmarkIcon(this.src, true);"
  184.                    onerror="gBrowser.addToMissedIconCache(this.src); HandleBookmarkIcon(this.src, false);"
  185.                    tooltiptext="&proxyIcon.tooltip;"/>
  186.           </deck>
  187.  
  188.           <menupopup id="ubhist-popup" class="autocomplete-history-popup"
  189.                      popupalign="topleft" popupanchor="bottomleft"
  190.                      onpopupshowing="createUBHistoryMenu(event.target);" 
  191.                      oncommand="executeUrlBarHistoryCommand(event.target);"/>
  192.         </textbox>
  193.  
  194.         <button id="go-button" class="button-toolbar chromeclass-location"
  195.                 label="&goButton.label;" hidden="true" persist="hidden"
  196.                 oncommand="addToUrlbarHistory(); BrowserLoadURL(event);"
  197.                 ondragover="nsDragAndDrop.dragOver(event, goButtonObserver);"
  198.                 ondragdrop="nsDragAndDrop.drop(event, goButtonObserver);"
  199.                 ondragexit="nsDragAndDrop.dragExit(event, goButtonObserver);"
  200.                 tooltiptext="&goButton.tooltip;" default="true"/> 
  201.  
  202.         <button id="search-button" class="button-toolbar chromeclass-location"
  203.                 label="&searchButton.label;" persist="hidden"
  204.                 oncommand="OpenSearch('internet',false, QualifySearchTerm());" 
  205.                 ondragover="nsDragAndDrop.dragOver(event, searchButtonObserver);"
  206.                 ondragdrop="nsDragAndDrop.drop(event, searchButtonObserver);"
  207.                 ondragexit="nsDragAndDrop.dragExit(event, searchButtonObserver);"
  208.                 tooltiptext="&searchButton.tooltip;"/> 
  209.       </hbox>
  210.  
  211.       <toolbarbutton id="print-button" type="menu-button" class="toolbarbutton-1"
  212.                      label="&printButton.label;" persist="hidden"
  213.                      oncommand="if (event.target==this) NSPrint();"
  214.                      tooltiptext="&printButton.tooltip;">  
  215.         <menupopup id="printMenu">
  216.           <menuitem id="printMenuItemToolbar" label="&printCmd.label;" accesskey="&printCmd.accesskey;"
  217.                     default="true" oncommand="NSPrint()"/>
  218.           <menuitem label="&printPreviewCmd.label;" accesskey="&printPreviewCmd.accesskey;"
  219.                     oncommand="setTimeout(BrowserPrintPreview, 0);"/>
  220.         </menupopup>
  221.       </toolbarbutton>
  222.  
  223.       <hbox id="throbber-box" align="center">
  224.         <button id="navigator-throbber" oncommand="goClickThrobber('browser.throbber.url')"
  225.                 tooltiptext="&throbber.tooltip;"/>
  226.       </hbox>
  227.       
  228.       <hbox id="window-controls" hidden="true" fullscreencontrol="true">
  229.         <toolbarbutton id="minimize-button" class="toolbarbutton-1"
  230.                        oncommand="window.minimize();"/>
  231.  
  232.         <toolbarbutton id="restore-button" class="toolbarbutton-1"
  233.                        oncommand="BrowserFullScreen();"/>
  234.  
  235.         <toolbarbutton id="close-button" class="toolbarbutton-1"
  236.                        oncommand="window.close();"/>
  237.       </hbox>
  238.     </toolbar>
  239.   
  240.     <toolbar id="PersonalToolbar" class="chromeclass-directories" persist="collapsed" 
  241.              grippytooltiptext="&personalToolbar.tooltip;" tbalign="stretch"
  242.              ondraggesture="nsDragAndDrop.startDrag(event, personalToolbarDNDObserver)"
  243.              ondragdrop="nsDragAndDrop.drop(event, personalToolbarDNDObserver); event.preventBubble()"
  244.              ondragenter="nsDragAndDrop.dragEnter(event, personalToolbarDNDObserver); event.preventBubble()"
  245.              ondragexit="nsDragAndDrop.dragExit(event, personalToolbarDNDObserver); event.preventBubble()"
  246.              ondragover="nsDragAndDrop.dragOver(event, personalToolbarDNDObserver); event.preventBubble()">
  247.  
  248.       <tooltip id="home-button-tooltip" noautohide="true">
  249.         <vbox id="home-button-tooltip-inner" flex="1"/>
  250.       </tooltip>
  251.       <toolbarbutton id="home-button" class="bookmark-item"
  252.                      label="&homeButton.label;" persist="hidden"
  253.                      oncommand="BrowserHome(); event.preventBubble()"
  254.                      tooltip="home-button-tooltip"
  255.                      ondraggesture="nsDragAndDrop.startDrag(event, homeButtonObserver)"
  256.                      ondragdrop="nsDragAndDrop.drop(event, homeButtonObserver); event.preventBubble()"
  257.                      ondragenter="event.preventBubble()"
  258.                      ondragexit="nsDragAndDrop.dragExit(event, homeButtonObserver); event.preventBubble()"
  259.                      ondragover="nsDragAndDrop.dragOver(event, homeButtonObserver); event.preventBubble()"/>
  260.   
  261.       <toolbarseparator id="home-bm-separator" persist="hidden"/>
  262.  
  263.       <!-- "Bookmarks" button on personal toolbar -->                           
  264.       <toolbarbutton type="menu" id="bookmarks-button" class="bookmark-item"
  265.                      persist="hidden" label="&bookmarksButton.label;"
  266.                      datasources="rdf:bookmarks rdf:files rdf:localsearch rdf:internetsearch"
  267.                      ref="NC:BookmarksRoot" container="true" flags="dont-test-empty"
  268.                      oncommand="OpenBookmarkURL(event.target, this.database)" 
  269.                      template="bookmarksMenuTemplate"
  270.                      ondraggesture="if (event.target.id=='bookmarks-button') event.preventBubble()">
  271.         <menupopup onpopupshowing="checkBookmarksMenuTemplateBuilder(); updateGroupmarkMenuitem('PT_bookmarks_groupmark');">
  272.           <menuitem accesskey="&addCurPageCmd.accesskey;" key="addBookmarkKb" observes="Browser:AddBookmark"/>
  273.           <menuitem accesskey="&addCurPageAsCmd.accesskey;" key="addBookmarkAsKb" observes="Browser:AddBookmarkAs"/>
  274.           <menuitem id="PT_bookmarks_groupmark" observes="Browser:AddGroupmarkAs"/>
  275.           <menuseparator/>
  276.           <menuitem accesskey="&manBookmarksCmd.accesskey;" key="manBookmarkKb" observes="Browser:ManageBookmark"/>
  277.           <menuseparator id="lastStaticSeparator"/>
  278.         </menupopup>
  279.       </toolbarbutton>
  280.  
  281.       <!-- Personal toolbar items -->
  282.       <hbox id="NC:PersonalToolbarFolder" flex="1" style="min-width: 1px;" context="bmContext" 
  283.            datasources="rdf:bookmarks rdf:files rdf:localsearch rdf:internetsearch"
  284.            ref="NC:PersonalToolbarFolder" flags="dont-test-empty"
  285.            oncommand="OpenBookmarkURL(event.target, this.database)"
  286.            rdf:type="http://home.netscape.com/NC-rdf#Folder">
  287.         <tooltip id="ptTooltip" noautohide="true" onpopupshowing="return FillInPTTooltip(document.tooltipNode)">
  288.           <vbox id="ptTooltipTextBox" flex="1">  
  289.             <label id="ptTitleText" />
  290.             <label id="ptUrlText" />
  291.           </vbox>
  292.         </tooltip>
  293.         <template xmlns:nc="http://home.netscape.com/NC-rdf#">
  294.           <rule parent="hbox" rdf:type="http://home.netscape.com/NC-rdf#BookmarkSeparator">
  295.             <toolbarseparator uri="rdf:*"
  296.                               rdf:type="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
  297.           </rule>
  298.  
  299.           <!-- yes, the type attribute is necessary otherwise all leaves are 
  300.                treated as containers for some reason -->
  301.           <rule parent="hbox" iscontainer="true"
  302.                 nc:FolderGroup="true">
  303.             <toolbarbutton class="bookmark-item bookmark-group" uri="rdf:*" xulcontentsgenerated="true" 
  304.                            group="true"
  305.                            container="false"
  306.                            rdf:type="http://home.netscape.com/NC-rdf#Folder"
  307.                            label="rdf:http://home.netscape.com/NC-rdf#Name"/>
  308.           </rule>
  309.  
  310.           <rule parent="hbox" iscontainer="true" isempty="true"
  311.                 rdf:type="http://home.netscape.com/NC-rdf#Folder">
  312.             <toolbarbutton type="menu" editable="true" class="bookmark-item"
  313.                            rdf:type="http://home.netscape.com/NC-rdf#Folder"
  314.                            uri="rdf:*" label="rdf:http://home.netscape.com/NC-rdf#Name">
  315.               <menupopup>
  316.                 <menuitem label="&emptyItem.label;" disabled="true"/>
  317.               </menupopup>
  318.             </toolbarbutton>
  319.           </rule>
  320.  
  321.           <rule parent="hbox" iscontainer="true">
  322.             <toolbarbutton type="menu" class="bookmark-item" uri="rdf:*" editable="true"
  323.                            rdf:type="http://home.netscape.com/NC-rdf#Folder"
  324.                            label="rdf:http://home.netscape.com/NC-rdf#Name">
  325.               <menupopup/>
  326.             </toolbarbutton>
  327.           </rule>
  328.  
  329.           <rule parent="hbox">
  330.             <toolbarbutton class="bookmark-item" uri="rdf:*" editable="true" 
  331.                            status="rdf:http://home.netscape.com/WEB-rdf#status"
  332.                            rdf:type="http://home.netscape.com/NC-rdf#Bookmark"
  333.                            statustext="rdf:http://home.netscape.com/NC-rdf#URL"
  334.                            tooltip="ptTooltip"
  335.                            label="rdf:http://home.netscape.com/NC-rdf#Name"/>
  336.           </rule>
  337.  
  338.           <rule nc:FolderGroup="true" iscontainer="true">
  339.             <menupopup>
  340.               <menuitem class="menuitem-iconic bookmark-group" 
  341.                         label="rdf:http://home.netscape.com/NC-rdf#Name"
  342.                         group="true"
  343.                         uri="rdf:*"
  344.                         xulcontentsgenerated="true"/>
  345.             </menupopup>
  346.           </rule>
  347.  
  348.           <rule iscontainer="true" isempty="true" rdf:type="http://home.netscape.com/NC-rdf#Folder">
  349.             <menupopup>
  350.               <menu class="menu-iconic bookmark-item" uri="rdf:*" 
  351.                   type="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
  352.                   label="rdf:http://home.netscape.com/NC-rdf#Name">
  353.                 <menupopup>
  354.                   <menuitem label="&emptyItem.label;" disabled="true"/>
  355.                 </menupopup>
  356.               </menu>
  357.             </menupopup>
  358.           </rule>
  359.  
  360.           <rule iscontainer="true">
  361.             <menupopup>
  362.               <menu class="menu-iconic bookmark-item" uri="rdf:*"
  363.                     type="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
  364.                     label="rdf:http://home.netscape.com/NC-rdf#Name">
  365.                 <menupopup/>
  366.               </menu>
  367.             </menupopup>
  368.           </rule>
  369.  
  370.           <rule rdf:type="http://home.netscape.com/NC-rdf#BookmarkSeparator">
  371.             <menupopup>
  372.               <menuseparator uri="rdf:*"
  373.                              type="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
  374.             </menupopup>
  375.           </rule>
  376.           <rule>
  377.             <menupopup>
  378.               <menuitem class="menuitem-iconic bookmark-item" uri="rdf:*"
  379.                         label="rdf:http://home.netscape.com/NC-rdf#Name"/>
  380.             </menupopup>
  381.           </rule>
  382.         </template>
  383.       </hbox>
  384.     </toolbar>
  385.  
  386.   </toolbox>
  387.     
  388.   <hbox flex="1">
  389.     <vbox id="sidebar-box" class="chromeclass-extrachrome"/>
  390.     <splitter id="sidebar-splitter" class="chromeclass-extrachrome" />
  391.   
  392.     <!-- we only need to handle |ondragdrop| because everything else is
  393.           taken care of by the builtin behavior inside the tabbrowser -->
  394.     <vbox id="appcontent" flex="1"
  395.          ondragdrop="nsDragAndDrop.drop(event, contentAreaDNDObserver);">
  396.  
  397.       <!-- this box is temporary, pending XBLified <browser> -->
  398.       <hbox id="browser" flex="1">
  399.         <tabbrowser id="content"
  400.                     flex="1" contenttooltip="aHTMLTooltip"
  401.                     contentcontextmenu="contentAreaContextMenu"
  402.                     onnewtab="BrowserOpenTab();"
  403.                     onclick="return contentAreaClick(event);"/>
  404.       </hbox>
  405.     </vbox>  
  406.   </hbox>
  407.  
  408.   <statusbar id="status-bar" class="chromeclass-status"
  409.              ondragdrop="nsDragAndDrop.drop(event, contentAreaDNDObserver);">
  410.     <statusbarpanel id="component-bar"/>
  411.     <statusbarpanel id="statusbar-display" label="&statusText.label;" flex="1"/>
  412.     <statusbarpanel class="statusbarpanel-progress">
  413.       <progressmeter class="progressmeter-statusbar" id="statusbar-icon" mode="normal" value="0"/>
  414.     </statusbarpanel>
  415.     <statusbarpanel id="popupIcon" class="statusbarpanel-iconic" hidden="true" oncommand="StatusbarViewPopupManager()"/>
  416.     <statusbarpanel class="statusbarpanel-iconic" id="offline-status"/>
  417.     <statusbarpanel class="statusbarpanel-iconic" id="security-button"
  418.                     onclick="BrowserPageInfo(null, 'securityTab')"/>
  419.   </statusbar> 
  420. </window>
  421.