   var bMenubarOk = 0;
   addLoadEvent(funcStartup);
   
   function Popup(theURL,winName,features) 
   { 
      // onClick="Popup('file.html','name','menubar=no,scrollbars=no,resizable=no,width=500,height=450'); return false;"
      window.open(theURL,winName,features);
   }   

   function funcClearCaption() 
   {
       if (document.captionform.caption.value = 'Enter your caption here!')
       {
          document.captionform.caption.value = '';
       }
   }   

   function funcChangeBGOn(i,color) 
   {
       document.getElementById('id' + i).style.backgroundColor = "#" + color;
   }   

   function funcChangeBGOff(i) 
   {
       document.getElementById('id' + i).style.backgroundColor = "";
   }

   function funcTurnAllTabsOff()
   {
       document.getElementById('id1').style.backgroundColor = "";;
       document.getElementById('id2').style.backgroundColor = "";;
       document.getElementById('id3').style.backgroundColor = "";;
       document.getElementById('id4').style.backgroundColor = "";;
       document.getElementById('id5').style.backgroundColor = "";;
       document.getElementById('id6').style.backgroundColor = "";;
       document.getElementById('id7').style.backgroundColor = "";;
       document.getElementById('id8').style.backgroundColor = "";;
   }

   function funcTurnAllTabsOffAndHide()
   {
       document.getElementById('id1').style.backgroundColor = "";;
       document.getElementById('id2').style.backgroundColor = "";;
       document.getElementById('id3').style.backgroundColor = "";;
       document.getElementById('id4').style.backgroundColor = "";;
       document.getElementById('id5').style.backgroundColor = "";;
       document.getElementById('id6').style.backgroundColor = "";;
       document.getElementById('id7').style.backgroundColor = "";;
       document.getElementById('id8').style.backgroundColor = "";;
       
       animatedcollapse.hide('bkt1');
       animatedcollapse.hide('bkt2');
       animatedcollapse.hide('bkt3');
       animatedcollapse.hide('bkt4');
       animatedcollapse.hide('bkt5');
       animatedcollapse.hide('bkt6');
       animatedcollapse.hide('bkt7');
       animatedcollapse.hide('bkt8');
   }

   function addLoadEvent(func) 
   {
     var oldonload = window.onload;
     if (typeof window.onload != 'function') 
     {
          window.onload = func;
     }
     else 
     {
          window.onload = function() 
          {
            oldonload();
            func();
          }
      }
   }

   function funcStartup()
   {
      bMenubarOk = 1;
   }

