function getRandomInt(min, max) 2010-04-02 01:42:05 function getRandomInt(min, max) { // via https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Math/random#Examples return Math.floor(Math.random() * (max - min + 1)) + min; }