<!-- 

//(c) 2005 Markus Niessen

function bild1024(datei)
{
  window.open(datei,'','width=1030,height=784,resizbale=no,scrollbars=no');
}

function bild800(datei)
{
  window.open(datei,'','width=816,height=616,resizbale=no,scrollbars=no');
}

function bild640(datei)
{
  window.open(datei,'','width=656,height=496,resizbale=no,scrollbars=no');
}

function bild1024p(datei)
{
  window.open(datei,'','width=784,height=1030,resizbale=no,scrollbars=no');
}

function bild800p(datei)
{
  window.open(datei,'','width=616,height=816,resizbale=no,scrollbars=no');
}

function bild640p(datei)
{
  window.open(datei,'','width=496,height=656,resizbale=no,scrollbars=no');
}

// Änderungsdatum +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

function ausgabe (date)
{
  if (date == "")
  {
    datum = new Date();
  }
  else
  {
    datum = new Date (date);
  }
  jahr = datum.getYear();
  
  if (jahr < 90) 
    jahr = jahr+2000;
  if (jahr < 2000) 
    jahr = jahr+1900;
  if (jahr > 1900)
  {
    tag = datum.getDate();
    monat = datum.getMonth()+1;
    document.write(tag,". ",monat,". ",jahr);
  }
  else
  {
    document.write(date);
  }
}

function last ()
{
  document.write("<p><font size=\"1\" color=\"#808080\">");
  date = document.lastModified;
  ausgabe (date);
  document.write("</p></font>");
}

// Frameset laden +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

function TestFrame()
{
  if (top==self||!top.frames['Seiteneigenschaften'])
    top.location.href="http://www.markus-niessen.de/index.htm?"+self.location.href;
}

TestFrame();

// chCounter v2.3 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

function Count()
{
  cstatus = "active";
  visible = "0";
  path_to_counterfile = "http://www.markus-niessen.de/Counter/counter.php";
  urlhp = "http://www.markus-niessen.de";

  url = unescape(location.href);
  file = url.substring(url.lastIndexOf(urlhp) + urlhp.length, url.length);
  file = (file.charAt(0) != "/") ? "/" + file : file;
  referer = (document.referrer) ? document.referrer : "";
  document.write("<script type=\"text/javascript\" ");
  document.write("src=\"" + path_to_counterfile + "?chCounter_mode=js&status=" + cstatus + "&visible=" + visible);
  document.write("&seite=" + file + "&referer=" + referer + "&res_width=" + screen.width + "&res_height=" + screen.height + "\"></" + "script>");
}

Count();


//-->