

   function FindYabbie( x, rootDir ) {
      yabbiesFound = GetTempCookie( 'yabbiesFound' );
      if( yabbiesFound == null || yabbiesFound == '' ) yabbiesFound = '0000000000';
      yabbiesFound = yabbiesFound.substring(0,x)+'1'+yabbiesFound.substring(x+1);
      SetTempCookie( 'yabbiesFound',yabbiesFound );
      SetTempCookie( 'latestYabbie',x );
      document.location.href=rootDir+'/contest10.asp';
   }
   function isYabbieFound( x ) {
      yabbiesFound = GetTempCookie( 'yabbiesFound' );
      if( yabbiesFound == null || yabbiesFound == '' ) yabbiesFound = '0000000000';
      return yabbiesFound.charAt(x) == '1';
   }
   function allYabbieFound() {
      yabbiesFound = GetTempCookie( 'yabbiesFound' );
      if( yabbiesFound == null || yabbiesFound == '' ) yabbiesFound = '0000000000';
      return yabbiesFound == '1111111111';
   }

