<!--
   var sequence = Math.round(100.0 * Math.random());

   function qt(token) {
      var index = 1 + sequence++ % (qt.arguments.length - 1);
      var url = "Video/"+token+"-"+qt.arguments[index]+".mov";
      if ((typeof(qtwin)=='undefined') || qtwin.closed) {
        qtwin = window.open(url,"video","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=320,height=256");
      } else {
        qtwin.location = url;
      }
      qtwin.focus();
   }
// -->

