function openWindow(imageName,imageWidth,imageHeight,alt) {
 newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight);
 newWindow.document.open();
 newWindow.document.write('<html><head><title>'+alt+'</title></head><body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" style="overflow:hidden" onBlur="self.close()">'); 
 newWindow.document.write('<a href="javascript:window:close()">');
 newWindow.document.write('<img src="'+imageName+'" width="'+imageWidth+'" height="'+imageHeight+'" alt="'+alt+'" border="0" title="'+alt+' [Klicken um das Bild zu schliessen]">'); 
 newWindow.document.write('</a>');
 newWindow.document.write('</body></html>');
 newWindow.document.close();
 newWindow.focus();
}

function openWindowDoc(url,width,height,alt) {
 newWindow = window.open(url,"newWindow","resizable=no,width="+width+",height="+height);
 newWindow.focus();
}
