<!--
function EopenWin(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function makeArray(n){
  this.length = n;
  for (i=1;i<=n;i++){
    this[i]=0;
  }
  return this;
}

function displayDate() {
    var this_month = new makeArray(12);
    this_month[0]  = "Januar";
    this_month[1]  = "Februar";
    this_month[2]  = "Maerz";
    this_month[3]  = "April";
    this_month[4]  = "Mai";
    this_month[5]  = "Juni";
    this_month[6]  = "July";
    this_month[7]  = "August";
    this_month[8]  = "September";
    this_month[9]  = "Oktober";
    this_month[10] = "November";
    this_month[11] = "Dezember";
	var today = new Date();
	var day   = today.getDate();
	var month = today.getMonth();
	var year  = today.getYear();
	if (year < 1900){
		year += 1900;
	}
  return(day+". "+this_month[month]+" "+year);
}

function displayYear(){
	var today = new Date();
	var year  = today.getYear();
	if (year < 1900){
		year += 1900;
	}
  return(year);
}

function getCookieVal (offset) {
  var endstr = document.cookie.indexOf (";", offset);
  if (endstr == -1)
    endstr = document.cookie.length;
  return unescape(document.cookie.substring(offset, endstr));
}

function GetCookie (name) {
  var arg = name + "=";
  var alen = arg.length;
  var clen = document.cookie.length;
  var i = 0;
  while (i < clen) {
    var j = i + alen;
    if (document.cookie.substring(i, j) == arg)
      return getCookieVal (j);
    i = document.cookie.indexOf(" ", i) + 1;
    if (i == 0) break; 
  }
  return null;
}

function DeleteCookie (name,path,domain) {
  if (GetCookie(name)) {
    document.cookie = name + "=" +
      ((path) ? "; path=" + path : "") +
      ((domain) ? "; domain=" + domain : "") +
      "; expires=Thu, 01-Jan-70 00:00:01 GMT";
  }
}
//-->
