// <![CDATA[

/***************************
 * numutils.js
 *
 * Created by Jennifer Bowen 2008-04-02
 * Last updated 2008-04-02
 * 
 * Utilities for numerical manipulation
 *
 ****************************/


/* Function hex2dec(h)
 *
 * converts a hexidecimal number to decimal
 */
function hex2dec(h) {
    return parseInt(h,16);
}


// ]]>
