// Message on status
function setStatus(msg) {
    status = msg;
}

// Date
function today()
{
    var today = new Date();
    var day, year, month, yearOne, yearTen;

    year  = today.getYear();
    day   = today.getDate();
    month = today.getMonth() + 1;

    document.write("<font color=#588030>");
    if ( year < 1900 ) {
        year = (year > 50)?1900+year:2000+year;
    }

    if ( month < 10 ) {
        document.write("0");
    }
    document.write(month);
    document.write("</font>");
    document.write("/");
    document.write("<font color=#588030>");
    if ( day < 10 ) {
        document.write("0");
    }
    document.write(day);
    document.write("</font>");
    document.write("/");
    document.write("<font color=#588030>");
    document.write(year);
    document.write("</font>");
}
