name = (navigator.appName);
now = new Date();
day = now.getDate();
month = now.getMonth();
date = now.getDay();
year = now.getYear();

year = (year + 1900);

{
    if (date == '0') {
        document.write("Sunday, ");
    }
    if (date == '1') {
        document.write("Monday, ");
    }
    if (date == '2') {
        document.write("Tuesday, ");
    }
    if (date == '3') {
        document.write("Wednesday, ");
    }
    if (date == '4') {
        document.write("Thursday, ");
    }
    if (date == '5') {
        document.write("Friday, ");
    }
    if (date == '6') {
        document.write("Saturday, ");
    }
}

if (month == '0') {
    document.write("January&nbsp;");
}
if (month == '1') {
    document.write("February&nbsp;");
}
if (month == '2') {
    document.write("March&nbsp;");
}
if (month == '3') {
    document.write("April&nbsp;");
}
if (month == '4') {
    document.write("May&nbsp;");
}
if (month == '5') {
    document.write("June&nbsp;");
}
if (month == '6') {
    document.write("July&nbsp;");
}
if (month == '7') {
    document.write("August&nbsp;");
}
if (month == '8') {
    document.write("September&nbsp;");
}
if (month == '9') {
    document.write("October&nbsp;");
}
if (month == '10') {
    document.write("November&nbsp;");
}
if (month == '11') {
    document.write("December&nbsp;");
}


document.write(day + ",&nbsp;" + year);
