<!--
function Fensterweite () {
  if (window.innerWidth) {
    return window.innerWidth;
  } else if (document.body && document.body.offsetWidth) {
    return document.body.offsetWidth;
  } else {
    return 0;
  }
}

function Fensterhoehe () {
  if (window.innerHeight) {
    return window.innerHeight;
  } else if (document.body && document.body.offsetHeight) {
    return document.body.offsetHeight;
  } else {
    return 0;
  }
}

function neuAufbau () {
  if (Weite != Fensterweite() || Hoehe != Fensterhoehe())
    window.history.go(0);
}

/* Überwachung von Netscape initialisieren */
if (!window.Weite && window.innerWidth) {
  window.onresize = neuAufbau;
  Weite = Fensterweite();
  Hoehe = Fensterhoehe();
}

/* Filmfenster */
function ViewImage(bildurl,b,h,bildtitel)
{
var eigenschaft,sbreite,shoehe,fenster,b,h;

// stellt die Bildschirmabmessungen fest
var ns6 = (!document.all && document.getElementById);
var ie4 = (document.all);
var ns4 = (document.layers);

if(ns6||ns4) {
sbreite = innerWidth;
shoehe = innerHeight;
}
else if(ie4) {
sbreite = document.body.clientWidth;
shoehe = document.body.clientHeight;
}

x = 0;
y = 0;

eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no,";

fenster=window.open("","",eigenschaften);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head>');
  document.write('<meta http-equiv="imagetoolbar" content="no">');
  document.write('<title>'+ bildtitel +'</title>');
  document.write('<link rel="stylesheet" type="text/css" href="css/all.css" media="screen,projection" /></head>');
  document.write('<body>');
  document.write('<br /><h1 style="margin-right: 20px">'+ bildtitel +'</h1><br />');
  document.write('<Embed type="application/x-mplayer2" src="'+ bildurl +'"pluginspage="http://www.microsoft.com/windows/windowsmedia/download/"></embed>');
  document.write('<div style="font-size: 71%;"><br /><br /><a href="javascript:window.close()">Close window</a></div>');
  document.write('</body></html>');
  fenster.document.close();
}
}

//-->

