Is it possible to seed a random number generator in JavaScript (so that, say, you can generate a seed from the date so that the results from the generator are the same on any given day)? I've tried putting the seed as a parameter in the Math.random() function, but that gets me nowhere. I realize...