today = new Date()
    if (today.getDay() == 0) {document.write ("Sun,")}
    if (today.getDay() == 1) {document.write ("Mon,")}
    if (today.getDay() == 2) {document.write ("Tue,")}
    if (today.getDay() == 3) {document.write ("Wed,")}
    if (today.getDay() == 4) {document.write ("Thur,")}
    if (today.getDay() == 5) {document.write ("Fri,")}
    if (today.getDay() == 6) {document.write ("Sat,")}
    if (today.getMonth() == 0) {document.write (" January ")}
    if (today.getMonth() == 1) {document.write (" February ")}
    if (today.getMonth() == 2) {document.write (" March ")}
    if (today.getMonth() == 3) {document.write (" April ")}
    if (today.getMonth() == 4) {document.write (" May ")}
    if (today.getMonth() == 5) {document.write (" June ")}
    if (today.getMonth() == 6) {document.write (" July ")}
    if (today.getMonth() == 7) {document.write (" August ")}
    if (today.getMonth() == 8) {document.write (" September ")}
    if (today.getMonth() == 9) {document.write (" October ")}
    if (today.getMonth() == 10) {document.write (" November ")}
    if (today.getMonth() == 11) {document.write (" December ")}
    document.write (today.getDate() + ", ")
    if (today.getYear() >= 2000) 
          {document.write (today.getYear())}      //Explorer
    else
          {document.write (today.getYear() + 1900)}      //Netscape