Fensterzahl=0
function OpenWindow(URL1,breite,hoehe,titel)
{
	links=(screen.width-breite)/2
	oben=(screen.height-hoehe)/2
	fhoehe=(hoehe+14)

	if(Fensterzahl>0)
	{
		if(F1.closed==false)
		F1.close()
	}

Fensterzahl=1
F1=open("","","width="+breite+",height="+fhoehe+",top="+oben+",screenY="+oben+",left="+links+",screenX="+links)

F1.document.open();

F1.document.write("<script type='text/javascript' language='JavaScript'>");
F1.document.write("function click() { window.close(); } ");
F1.document.write("document.onmousedown=click ");
F1.document.write("</script>");

F1.document.write('<link rel="stylesheet" type="text/css" href="styledat.css">')
F1.document.write('<title>'+titel+'</title>')
F1.document.write('<body bgcolor="#000000" text="#faf0e6" link="#faf0e6" vlink="#faf0e6" alink="#faf0e6" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">')
F1.document.write('<img src="'+URL1+'" width="'+breite+'" height="'+hoehe+'" border="0">')
F1.document.write('<br><font face="Arial, Helvetica, sans-serif" size="1"><center>[close/schliessen]</center></font>')
F1.document.write('</body>')
F1.document.close();
}

function OpenBanner(URL1,breite,hoehe,titel)
{
	links=20
	oben=20
	fhoehe=(hoehe+14)

	if(Fensterzahl>0)
	{
		if(F1.closed==false)
		F1.close()
	}

Fensterzahl=1
F1=open("","","width="+breite+",height="+fhoehe+",top="+oben+",screenY="+oben+",left="+links+",screenX="+links)

F1.document.open();

F1.document.write("<script type='text/javascript' language='JavaScript'>");
F1.document.write("function click() { window.close(); } ");
F1.document.write("document.onmousedown=click ");
F1.document.write("</script>");

F1.document.write('<link rel="stylesheet" type="text/css" href="styledat.css">')
F1.document.write('<title>'+titel+'</title>')
F1.document.write('<body bgcolor="#000000" text="#faf0e6" link="#faf0e6" vlink="#faf0e6" alink="#faf0e6" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">')
F1.document.write('<img src="'+URL1+'" width="'+breite+'" height="'+hoehe+'" border="0">')
F1.document.write('<br><font face="Arial, Helvetica, sans-serif" size="1"><center>[close/schliessen]</center></font>')
F1.document.write('</body>')
F1.document.close();
}


function openWindowOld(url, width, height)
{
	if ((width + 30 > screen.width) || (height + 60 > screen.height))
	{
	        width = width + 50;
                if (width > screen.width - 80)
			width = screen.width - 80;
	        height = height + 50;
		if (height > screen.height - 110)
			height = screen.height - 110;
		popupWin = window.open(url, "Image", "resizable,scrollbars,width=" + width + ",height=" + height + ",top=40,left=40,screenX=40,screenY=40");
	}
	else
	{
	        width = width + 18;
	        height = height + 26;
		popupWin = window.open(url, "Image", "resizable,width=" + width + ",height=" + height + ",top=40,left=40,screenX=40,screenY=40");
	}
}

function imageover(file)
{
	document.img1.src = file;
}


function contents(file)
{
	self.location.replace(file);
}


function mHigh()
{
	event.srcElement.style.filter = "invert";
}

function mBack()
{
	event.srcElement.style.filter = "";
}
