
<!---
Protokoll = self.location.protocol;
Pfad = self.location.pathname;
Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-11)
neues_Fenster = null;

function errorTrap() {return true;}
window.onerror = errorTrap;

function Zeigen(Bild0,Titel0,Breite0,Hoehe0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   zu();
   setTimeout("sichtbar()",1000);
}

function sichtbar()
{  
   Fenster_Hoehe = Hoehe + 35;
   Fenster_Breite = Breite + 20;
   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster) 
   {
      document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE>');

	document.writeln('<script>document.onmousedown = checkRMClick;');
document.writeln('if (document.layers) { document.captureEvents(Event.MOUSEDOWN) }');
document.writeln('function checkRMClick(evnt) {');
document.writeln('if (navigator.appName == "Netscape") {');
document.writeln('if (evnt.which != 1) { alert("Diese Funktion ist leider nicht verfügbar."); return false; }');
document.writeln('}');
document.writeln('else { if (event.button != 1) { alert("Diese Funktion ist leider nicht verfügbar."); return false; } }');
document.writeln('}');


	document.writeln('</script></HEAD>');

      document.writeln('<BODY BGCOLOR="#ffffff" TEXT="#333333" oncontextmenu="return false"><DIV ALIGN=CENTER><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE"><TR><TD align=center>');
      document.writeln('<IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 ALT="'+Titel+'"><br><a href="javascript:window.close()"><font size=1 face=verdana>Fenster schliessen</font></a></TD>');
      document.writeln('</TR></TABLE></DIV></BODY></HTML>');
   }


}

function zu()
{
   if (neues_Fenster != null)
     if (!neues_Fenster.closed)
        if (neues_Fenster.close)
           neues_Fenster.close(); 
}

document.onmousedown = checkRMClick;
if (document.layers) { document.captureEvents(Event.MOUSEDOWN) }
function checkRMClick(evnt) {
if (navigator.appName == "Netscape") {
if (evnt.which != 1) { alert("Diese Funktion ist leider nicht verfügbar."); return false; }
}
else { if (event.button != 1) { alert("Diese Funktion ist leider nicht verfügbar."); return false; } }
}

//--->