<!--
   function writeFlash (vars,psecn) {
      var w, h, fname;
      w = 750;
      h = 545;
      fname = 'controllerXL';

      if(psecn==1) {
         vars += "&txtOffsets=";
         navRoot = document.getElementById("subcontainer");
         
         for (i=0; i<navRoot.childNodes.length; i++) {
            node = navRoot.childNodes[i];
            if (node.nodeName=="DIV") {
               vars += node.id + ',' + document.getElementById(node.id).offsetHeight + ',';
            }
         }
      }
            
      document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + w + '" height="' + h + '" id="blackcat">');
      document.write('<param name="movie" value="' + fname + '.swf?' + vars + '" />');
      document.write('<param name="quality" value="high" />');
      document.write('<param name="bgcolor" value="#000000" />');
      document.write('<param name="wmode" value="transparent" />');
      document.write('<embed src="' + fname + '.swf?' + vars + '" swLiveConnect="true" wmode="transparent" quality="high" bgcolor="#000000" width="' + w + '" height="' + h + '" name="blackcat" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
      document.write('</object>');
   }

//-->