function openPopup (Adresse) 
{
  MeinFenster = window.open(Adresse, "Detailansicht", "width=300,height=200,scrollbars=no");
  MeinFenster.focus();
}

function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop) 
{
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title>');
	newWindow.document.write('<bo'+'dy bgcolor="#3053A7" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
	newWindow.document.write('<table border=0 height=100% width=100% cellpadding=2 cellspacing=0><tr>');
	newWindow.document.write('<td valign="top"><img src="/images/logo-open-win.jpg"></td>');
	newWindow.document.write('</tr><tr>');
	newWindow.document.write('<td align=center><img src="'+imageName+'" alt='+alt+' style="border:1px solid #FFFFFF; margin:0px;"></td>');
	newWindow.document.write('</tr><tr>');
	newWindow.document.write('<td align="right" valign="bottom"><a href="javascript:document.self.close()"><img src="/images/button-schliessen.gif" border="0"></a></td>');
	newWindow.document.write('</tr>');
	newWindow.document.write('</table>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
