function MM_openBrWindow(url,bildunterschrift,features)
{
	//Bilder im Fenster öffnen
	properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,menubar=no";
    openBrWindow = window.open('nopic.php','openBrWindow',features + ", "+properties);
    openBrWindow.document.open();
    openBrWindow.document.write('<HTML><HEAD><TITLE>OpelClubSCENE '+bildunterschrift+'</TITLE></HEAD>');
    openBrWindow.document.write('<BODY TOPMARGIN="0"><A HREF="JavaScript:self.close()"><IMG SRC="'+url+'" HSPACE="0" VSPACE="0" BORDER="0" width="800" name="pic"></A>');
    openBrWindow.document.write('<br><center><font face="Arial, Helvetica, sans-serif" size="2"><b>Zum Schließen ins Bild klicken!</b></font>');
    openBrWindow.document.write('<script language="JavaScript">');
    openBrWindow.document.write('if(document.getElementsByName("pic")[0].width>800) document.getElementsByName("pic")[0].width=800');
    openBrWindow.document.write('</script>');
    openBrWindow.document.write('</BODY></HTML>');
    openBrWindow.document.close();
    openBrWindow.focus();
}

