//this is the date function
function stringMonth()
{
        this[0]  = "January";
        this[1]  = "February";
        this[2]  = "March";
        this[3]  = "April";
        this[4]  = "May";
        this[5]  = "June";
        this[6]  = "July";
        this[7]  = "August";
        this[8]  = "September";
        this[9]  = "October";
        this[10] = "November";
        this[11] = "December";
}

function stringDays()
{
        this[0]  = "31";
        this[1]  = "28";
        this[2]  = "31";
        this[3]  = "30";
        this[4]  = "31";
        this[5]  = "30";
        this[6]  = "31";
        this[7]  = "31";
        this[8]  = "30";
        this[9]  = "31";
        this[10] = "30";
        this[11] = "31";
}

ALLMONTHS = new stringMonth;
ALLDAYS = new stringDays;

function getDaysInMonth(month,year)
{
var thisMonth = today.getMonth();
var thisYear = today.getYear();
}

function writeDate()
{
        today = new Date;
        var thisYear = today.getYear();
		var thisMonth = today.getMonth();
        if (thisYear >= 96)
        {
                var yearstr = thisYear;
        }
        else
        {
                var yearstr = thisYear;
        }

        document.write(ALLMONTHS[(today.getMonth())]+ " " + ALLDAYS[(today.getMonth())]+ ", " + yearstr);
}

function writeMonth()
{
        today = new Date;
        document.write(ALLMONTHS[(today.getMonth())]);
}