/**
 * This file is intended to hold Javascript functions
 * which deal with mathematical tasks.
 *
 * version $Id: math.js,v 1.3 2006/02/03 07:52:06 bsimon Exp $
**/

/**
 * Answer a random number.
 **/
function randomInt() {
    return Math.round((Math.random()*9007199254740991)+1);
}


