function MM_openBrWindow(url,bildunterschrift,features)
{
	var jahr = url.substr(0, 5); 
	if (jahr == '2003/') { 
		var url = url.substr( 5) 
	}
	if (url.substr(1, 1) == '/' && url.substr( 2, 1)) { var url = url.substr( 2) }

	//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="../../data/artikel/'+url+'" HSPACE="0" VSPACE="0" BORDER="0" 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();
}

