<!--
var maxi=26; // maximo de letras que se usaran por palabra
var incorrect=0;
var intenta=0
var muestra = new Date();
var indice = 0;

var timerID = 0;
var tStart  = -10;
Start();

function UpdateTimer() {
   if(timerID) {
      clearTimeout(timerID);
      clockID  = 0;
   }

   if(!tStart)
      tStart = new Date();

   var tDate = new Date();
   var tDiff = tDate.getTime() - tStart.getTime();
   
   tDate.setTime(tDiff);

   document.quiz.reloj.value = "" 
                                   + tDate.getMinutes() + ":" 
                                   + tDate.getSeconds();
   
   timerID = setTimeout("UpdateTimer()", 1000);
} // fin de UPDATETIMER

function Start() {
   tStart = new Date();
   document.quiz.reloj.value = "00:00";
   timerID = setTimeout("UpdateTimer()", 1000);
} // fin de START

function Stop() {
   if(timerID) {
      clearTimeout(timerID);
      timerID  = 0;
   }
   tStart = null;
} // fin de STOP

function Reset() {
   tStart = null;
   document.quiz.reloj.value = "00:00";
   Start();
} // fin de RESET



-->
