function Picture_Popup(img_src, img_width, img_height, img_title, img_author) {
 win_width = parseInt(img_width)+20;
 win_height = parseInt(img_height)+60;
 popup=window.open('', 'Neues_Fenster', 'width='+win_width+', height='+win_height+', scrollbars=no,buttons=no,statusbar=no,location=no,resizable=no' );

 popup.document.writeln('<html><head> <link rel="stylesheet" type="text/css" href="../scripts/inhalt.css"> <title>'+img_title+'</title></head><body><img align="center" src="'+img_src+'", width="'+img_width+'", height="'+img_height+'", alt="'+img_title+'"><br><div align="center">Foto: '+img_author+' <br><a href="#" onClick="window.close()">Fenster schliessen</a></div> </body></html>');

 }
