diff -r 5e8fd89c02ea -r a38876c0793c includes/clientside/static/toolbar.js --- a/includes/clientside/static/toolbar.js Sun Jun 22 18:13:59 2008 -0400 +++ b/includes/clientside/static/toolbar.js Tue Jun 24 23:37:23 2008 -0400 @@ -1,6 +1,6 @@ // Page toolbar - selecting buttons -function unselectAllButtonsMajor() +window.unselectAllButtonsMajor = function() { if ( !document.getElementById('pagebar_main') ) return false; @@ -15,7 +15,7 @@ } } -function unselectAllButtonsMinor() +window.unselectAllButtonsMinor = function() { if ( !document.getElementById('pagebar_main') ) return false; @@ -36,7 +36,7 @@ } } -function selectButtonMajor(which) +window.selectButtonMajor = function(which) { if ( !document.getElementById('pagebar_main') ) return false; @@ -50,7 +50,7 @@ } } -function selectButtonMinor(which) +window.selectButtonMinor = function(which) { if ( !document.getElementById('pagebar_main') ) return false;