/**
* Script contains all functions for dealing with objects. 
*/

/**
 * Creates a class called DateUtils. 
 */
var DateUtils = {
    version : "1.0.0",
    daysInMonth : new Array('',31,29,31,30,31,30,31,31,30,31,30,31),
    minDate : new Date(),
    maxDate : new Date()

};

// Set values of minimum and maximum dates.
DateUtils.minDate.setFullYear(1900,0,1);
DateUtils.maxDate.setFullYear(2079,0,1)

