/**
 * Date Functions
 * Datanumeric.com, April 2003
 */

    function getDisplayMonth(iMonth) {
    var monthArray = new Array("January","Febuary","March","April","May","June","July","August","September","October","November","December");

        return monthArray[iMonth];
    }

    function getDisplayDate(passedDate) {

    theDate = new Date(passedDate);
    iDay = theDate.getDate();
    iMonth = theDate.getMonth();
    iYear = theDate.getFullYear();

    sDisplayDate = getDisplayMonth(iMonth) + " " + iDay + ", " + iYear;

    return sDisplayDate;
    }

	

