
// Browsererkennung, soweit nötig
var isIE	= (typeof(document.all) != 'undefined');
var isOpera	= (typeof(window.opera) != 'undefined') ? 1 : 0;


Normal1 = new Image();
Normal1.src = "Images/Layout/Logo.gif";     /* erste Standard-Grafik */
Highlight1 = new Image();
Highlight1.src = "Images/Layout/Logo_light.gif"; /* erste Highlight-Grafik */

function Bildwechsel(Bildnr,Bildobjekt) {
 window.document.images[Bildnr].src = Bildobjekt.src;
}


var Window;
function openpic(NR,breite,hoehe)
{
	Window=window.open('','Bild','width='+breite+',height='+hoehe+',menubar=no,resizable=no,locationbar=no,status=no,scrollbars=no');
	Window.document.open('text/html');
	Window.document.write('<html>\n<head>\n<title>Bild '+NR+'</title>\n</head>\n');
	Window.document.write('<body bgcolor=black marginwidth=0 marginheight=0 leftmargin=0 rightmargin=0 topmargin=0>\n');
	Window.document.write('<img src="img/'+NR+'" border=0 align=top>');
	Window.document.write('</body>');Window.document.write('</html>');
	Window.document.close();
}

function openpic_path(path,NR,breite,hoehe)
{
	Window=window.open('','Bild','width='+breite+',height='+hoehe+',menubar=no,resizable=no,locationbar=no,status=no,scrollbars=no');
	Window.document.open('text/html');
	Window.document.write('<html>\n<head>\n<title>Bild '+NR+'</title>\n</head>\n');
	Window.document.write('<body bgcolor=black marginwidth=0 marginheight=0 leftmargin=0 rightmargin=0 topmargin=0>\n');
	Window.document.write('<img src="'+path+'img/'+NR+'" border=0 align=top>');
	Window.document.write('</body>');Window.document.write('</html>');
	Window.document.close();
}