   <!--
   function BrowserSwitchImage(item_id,on)
   {
      var img_item=document.getElementById(item_id);
      var img_src=img_item.src;
      var new_src;
      if (on)
         new_src=img_src.substring(0,img_src.length-4)+'2.gif';
      else
         new_src=img_src.substring(0,img_src.length-5)+'.gif';
      img_item.src=new_src;
   }
   function ShowHelpBox(evt,itm)
   {
      var box=document.getElementById(itm);
      var go_x=((version=='IE')?evt.x+document.body.scrollLeft:evt.pageX)+13;
      var go_y=((version=='IE')?evt.y+document.body.scrollTop:evt.pageY)+13;
      box.style.left=go_x;
      box.style.top=go_y;
      box.style.display='block';
   }
   function HideHelpBox(evt,itm)
   {
      document.getElementById(itm).style.display='';
   }
   function GoTop()
   {
      window.scrollTo(0,0);
   }
   function OpenFuncWindow(ref,name)
   {
      window.open(ref,name,'toolbar=yes,location=yes,scrollbars=yes,resizable=yes,status=yes,menubar=yes,height=450,width=600').focus();
   }
   function OpenExampleWindow(loc,ref,shell)
   {
      var path=loc;
      if (shell==true)
         path+="example.php?fl=";
      path+=ref;
      window.open(path,'example','toolbar=no,location=no,scrollbars=yes,resizable=yes,status=yes,menubar=no,height=300,width=525').focus();
   }
   -->
