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 >
Wrap
Text File
|
1996-09-30
|
192b
|
8 lines
function random(maxValue) {
day = new Date();
hour = day.getHours();
min = day.getMinutes();
sec = day.getSeconds();
return (((hour + 1) + (min +1) * sec) % maxValue) +1;
}