<!--
   var newwindow = '';
   function popup(url, name)
   {
      if (!newwindow.closed && newwindow.location)
         newwindow.location.href = url;
      else {
         newwindow = window.open(url, name, 'width=1024,height=192,top=100,left=100,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes');
         if (!newwindow.opener)
            newwindow.opener = self;
      }
      if (window.focus)
         newwindow.focus();
      return false;
   }

   function toggleDisplay(id) {
      var info = document.getElementById(id);
      if ( info.className == 'hide') {
         info.className = 'show';
      } else {
         info.className = 'hide';
      }
   }
// -->


