function showDate()
{
  var today = new Date();
  var months = ["January", "February", "March", "April", "May", "June", "July", "August",
                  "September", "October", "November", "December"];
  var days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];

  var todaysMonth = today.getMonth();
  var todaysDate = today.getDate();
  var todaysDay = today.getDay();

  yearStr = today.getYear().toString();
  year = parseInt(yearStr);
  var yearPrefix = 1900;

  // if yearStr doesn't start with 19 or 20, add 1900 to it
  if(yearStr.indexOf("19") != 0 && yearStr.indexOf("20") != 0)
  { yearStr = parseInt(yearPrefix + year);
  }

  dateStr = days[todaysDay] + " " + months[todaysMonth] + " " +
    todaysDate.toString() + ", " + yearStr;

  document.write(dateStr);
}

<!-- Hide from old browsers

  // All you have to do is put another text in the variable message.
  // Don't forget to break all lines with a ^
  // When you do not place a ^ at the end of all the message, the
  // message will not repeat

  message     =           
                "IAME-ISIS^^^" + "Official Website^^^^"
            
                "^"
  scrollSpeed = 25
  lineDelay   = 1500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->