home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / TemaCD / RCEdit / RCEdit.CAB / Random.js < prev    next >
Text File  |  1996-09-30  |  192b  |  8 lines

  1. function random(maxValue) {
  2.         day = new Date();
  3.         hour  = day.getHours();
  4.         min = day.getMinutes();
  5.         sec = day.getSeconds();
  6.         return (((hour + 1) + (min +1) * sec) % maxValue) +1;
  7.     }
  8.