// --------------- DATA ON TOP PAGE ------------------ //
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
function getDataText(){ 
 var now = new Date();
  var days = new Array(
	'Sonntag','Montag','Dienstag',
	'Mittwoch','Donnerstag','Freitag','Samstag');
  var months = new Array(
	'Januar','Februar','März','April','Mai',
	'Juni','Juli','August','September','Oktober',
	'November','Dezember');
  var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
  function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
  }
  today =  days[now.getDay()] + ", " + date + ". " + months[now.getMonth()] + " " + (fourdigits(now.getYear()));
  return(today);
}
