<!--
function DisplayTopDateTime(){

// GET TIMEING
var TheCurrentLTime = new Date();
var TheTimeDifference = TheCurrentLTime.getTime() - OrigStartingDate.getTime();
var TheCurrentTime = Number(TheCurrentDate) + Number(TheTimeDifference);
var WorkingDate = new Date();  
WorkingDate.setTime(TheCurrentTime);

// GET DATE VARIABLES
Year = WorkingDate.getFullYear();
Month = Number(WorkingDate.getMonth()) + 1;
  if (Month < 10){  Month = "" + 0 + Month  } // END IF
Day = WorkingDate.getDate();
  if (Day < 10){  Day = "" + 0 + Day;  } // END IF
  if (Day == 1){  DayExt = "st";  } else 
  if (Day == 2){  DayExt = "nd";  } else 
  if (Day == 3){  DayExt = "rd";  } else 
  if (Day == 21){  DayExt = "st";  } else 
  if (Day == 22){  DayExt = "nd";  } else 
  if (Day == 23){  DayExt = "rd";  } else 
  if (Day == 31){  DayExt = "st";  } else 
  if (Day > 3){  DayExt = "th";  } // END IF
  //DayExt = "<sup>" + DayExt + "</sup>";
WDay = WorkingDate.getDay();
  if (WDay == 0){  WDay = "So";  } else //WDay = "Sunday";  } else //
  if (WDay == 1){  WDay = "Mo";  } else //WDay = "Monday";  } else //
  if (WDay == 2){  WDay = "Di";  } else //WDay = "Tuesday";  } else //
  if (WDay == 3){  WDay = "Mi";  } else //WDay = "Wednesday";  } else //
  if (WDay == 4){  WDay = "Do";  } else //WDay = "Thursday";  } else //
  if (WDay == 5){  WDay = "Fr";  } else //WDay = "Friday";  } else //
  if (WDay == 6){  WDay = "Sa";  } // END IF//WDay = "Saturday";  } // END IF//
WMonth = Month;
  if (WMonth == 1){  WMonth = "Jan";  } else //WMonth = "January";  } else //
  if (WMonth == 2){  WMonth = "Feb";  } else //WMonth = "February";  } else //
  if (WMonth == 3){  WMonth = "Mär";  } else //WMonth = "March";  } else //
  if (WMonth == 4){  WMonth = "Apr";  } else //WMonth = "April";  } else //
  if (WMonth == 5){  WMonth = "Mai";  } else //WMonth = "May";  } else //
  if (WMonth == 6){  WMonth = "Jun";  } else //WMonth = "June";  } else //
  if (WMonth == 7){  WMonth = "Jul";  } else //WMonth = "July";  } else //
  if (WMonth == 8){  WMonth = "Aug";  } else //WMonth = "August";  } else //
  if (WMonth == 9){  WMonth = "Sep";  } else //WMonth = "September";  } else //
  if (WMonth == 10){  WMonth = "Okt";  } else //WMonth = "October";  } else //
  if (WMonth == 11){  WMonth = "Nov";  } else //WMonth = "November";  } else //
  if (WMonth == 12){  WMonth = "Dez";  } // END IF//WMonth = "December";  } // END IF//
  
Hours = WorkingDate.getHours();
Minutes = WorkingDate.getMinutes();
  if (Minutes < 10){  Minutes = "0" + Minutes;  } // END IF
Seconds = WorkingDate.getSeconds();
  if (Seconds < 10){  Seconds = "0" + Seconds;  } // END IF


// FINALIZE STRING
var TheReturnString = "<span class=\"dateTime\">" + WDay + ", " + Day + ". " + WMonth + " "  + Year + " " + Hours + ":" + Minutes + ":" + Seconds + " " + "&nbsp;&nbsp;(" + TheCurrentDateZone + ")&nbsp;&nbsp;</span>";

// WRITE TIME REMAINING TO PAGE
if (document.getElementById){
  document.getElementById("TopTimeDisplay").innerHTML = TheReturnString;
  window.setTimeout('DisplayTopDateTime()', 1000);
} else if (document.all){
  document.all.TopTimeDisplay.innerHTML = TheReturnString;
  window.setTimeout('DisplayTopDateTime()', 1000);
} else {
  return TheReturnString;
} // END IF
	
} // END FUNCTION
//-->