<!--

function cas() {
  var day, date, month, year, hours, minutes, seconds;
  var intDay, intDate, intMonth, intYear, intHours, intMinutes, intSeconds;
  var times;

  input = new Date();

  intDay = input.getDay();
  intDate = input.getDate();
  intMonth = input.getMonth();
  intYear = input.getYear();
  intHours = input.getHours();
  intMinutes = input.getMinutes();
  intSeconds = input.getSeconds();
  intMonth++;
  
  if (intDate < 10) {date = "0" + intDate + "-";}
  else {date = intDate + "-";}
  
  if (intMonth < 10) {month = "0" + intMonth + "-";}
  else {month = intMonth + "-";}
  
  year = intYear + "&nbsp &nbsp &nbsp";
  
  if (intDay == 0) {day = "&nbsp &nbsp SUN &nbsp &nbsp";}
  if (intDay == 1) {day = "&nbsp &nbsp MON &nbsp &nbsp";}
  if (intDay == 2) {day = "&nbsp &nbsp TUE &nbsp &nbsp";}
  if (intDay == 3) {day = "&nbsp &nbsp WED &nbsp &nbsp";}
  if (intDay == 4) {day = "&nbsp &nbsp THU &nbsp &nbsp";}
  if (intDay == 5) {day = "&nbsp &nbsp FRI &nbsp &nbsp";}
  if (intDay == 6) {day = "&nbsp &nbsp SAT &nbsp &nbsp";}

  if (intHours < 10) {
    hours = "0" + intHours + ":";
  } else {
    hours = intHours + ":";
  }

  if (intMinutes < 10) {
    minutes = "0" + intMinutes + ":";
  } else {
    minutes = intMinutes + ":";
  }

  if (intSeconds < 10) {
    seconds = "0" + intSeconds;
  } else {
    seconds = intSeconds;
  } 

  datumString = day + date + month + year + hours + minutes + seconds;

  Today.innerHTML = datumString;

  window.setTimeout("cas();", 100);
}

window.onload = cas;

//-->
