function neuesFenster(cURL, nWidth, nHeight) {
   var fenster = window.open(cURL, "FotoInfos", "width="+nWidth+",height="+nHeight+",scrollbars=yes,resizable=yes");
   fenster.resizeTo(nWidth, nHeight);
   fenster.focus();
}
