function oeffnen1(bild,breite,hoehe,titel) {
posLeft=250;
posTop=100;
tb=breite+20;
th=hoehe+20;
bb=breite+40;
bh=hoehe+40;
var w = (screen.width / 2) - (bb / 2);
posLeft=w;


	newWindow = window.open("","newWindow", "width="+bb+", height="+bh+", left="+posLeft+", top="+posTop+", toolbar=no,status=no,scrollbars=no,resizable=no,menubar=no");
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+titel+'</title>');
	newWindow.document.write('<style>');
	newWindow.document.write('.bild {background-color:#FFFFFF;border: 1px solid #000000}');
	newWindow.document.write('.tdb1 {background-color:#EEEEEE;border: 1px solid #BBBBBB}');
	newWindow.document.write('</style></head>');
	newWindow.document.write('<body bgcolor="#C4AF52" leftmargin="0" topmargin="10" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<table align="center" width='+tb+' height='+th+'>');
	newWindow.document.write('<tr><td align="center"><img src='+bild+' width='+breite+' height='+hoehe+' alt="" class="bild"></td></tr></table>'); 
	
	
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function oeffnen1xxx(bild,breite,hoehe,titel) {
posLeft=250;
posTop=100;
tb=breite+40;
th=hoehe+40;
bb=breite+80;
bh=hoehe+80;
var w = (screen.width / 2) - (bb / 2);
posLeft=w;


	newWindow = window.open("","newWindow", "width="+bb+", height="+bh+", left="+posLeft+", top="+posTop+", toolbar=no,status=no,scrollbars=no,resizable=no,menubar=no");
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+titel+'</title>');
	newWindow.document.write('<style>');
	newWindow.document.write('.bild {background-color:#FFFFFF;border: 9px double #C4AF52}');
	newWindow.document.write('.tdb1 {background-color:#EEEEEE;border: 1px solid #BBBBBB}');
	newWindow.document.write('</style></head>');
	newWindow.document.write('<body bgcolor="#7F140A" leftmargin="0" topmargin="20" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<table align="center" width='+tb+' height='+th+'>');
	newWindow.document.write('<tr><td align="center"><img src='+bild+' width='+breite+' height='+hoehe+' alt="" class="bild"></td></tr></table>'); 
	
	
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

