<!--
scrwidth = screen.width;
scrheight = screen.height;

function agb()
        {
        msgWindow=window.open("agb.htm","displayWindow","toolbar=no,width=440,height=500,directories=no,status=no,scrollbars=yes,resize=no,menubar=no")
        }

function impressum()
        {
        msgWindow=window.open("impressum.htm","displayWindow","toolbar=no,width=440,height=300,directories=no,status=no,scrollbars=no,resize=no,menubar=no")
        }

function neuesFenster99()
        {
        msgWindow=window.open("formd.htm","displayWindow","toolbar=no,width=540,height=500,directories=no,status=no,scrollbars=yes,resize=no,menubar=yes")
        }

function KBCenterDiv(NNRef, IERef, ifWidth, ifHeight, forev) {
// Copyright (c) 1998 by Kevin Bartz. All rights reserved. This site has been enhanced by Kevin Bartz's own original highlighter! Mail him at kevinbartz@geocities.com! This line must remain in the script.
IE4=(document.all)?1:0
NN4=(document.layers)?1:0
if (NN4) {
theLay=eval(NNRef)
if (ifWidth) {
theLay.left=innerWidth/2-theLay.clip.width/2
}
if (ifHeight) {
theLay.top=innerHeight/2-theLay.clip.height/2
}
}
if (IE4) {
theDiv=eval(IERef)
if (ifWidth) {
theDiv.style.left=document.body.offsetWidth/2-theDiv.offsetWidth/2
}
if (ifHeight) {
theDiv.style.top=document.body.offsetHeight/2-theDiv.offsetHeight/2
}
}
if (forev) {
setTimeout('KBCenterDiv("'+NNRef+'","'+IERef+'",'+ifWidth+","+ifHeight+","+forev+")",10)
}
}

// (c) 2002 M.Bothge - Schwarzheide
// BILD IN NEUEM ZENTRIERTEN FENSTER ÖFFNEN
//
function OpenNewWindow(Picture,Breit,Hoch)
{
xsize = Breit+35;// Zusatz für Rand rechts und links
ysize = Hoch+135; //Zusatz für Rand oben und unten - damit Button angezeit werden kann

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/2)-(ysize/2);

	NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");
	NewWindow.document.write ("<html><head><title>BILDANZEIGE");
	NewWindow.document.write ("</title></head>");
    NewWindow.document.write ("<body bgcolor='#cccccc' onload='focus()'>");
	//NewWindow.document.write ("<body bgcolor='#cccccc'>");
	NewWindow.document.write ("<table align='center'><tr>");
	NewWindow.document.write ("<td align='center' valign='top'>");
	NewWindow.document.write ("<table border='1' bgcolor='#000000' cellpadding='0' cellspacing='1'><tr><td align='center'>");
	NewWindow.document.write ("<img src=");
	NewWindow.document.write (Picture);
	NewWindow.document.write (">");
	NewWindow.document.write ("</tr></table>");
	NewWindow.document.write ("</td></tr><tr>");
	NewWindow.document.write ("<td align='center' valign='bottom'>");
	NewWindow.document.write ("<br><center><form><input type='button' value='FENSTER SCHLIESSEN' style='font-family: Verdana; font-size: 10px' onClick='self.close()'>");
	NewWindow.document.write ("</td></tr></table>");
	NewWindow.document.write ("</form></body></html>");
	NewWindow.document.close();
    NewWindow.resizeTo(xsize,ysize);
}

//-->

