function showLargePic(Bild){
var OUT ='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"'+
'"http://www.w3.org/TR/html4/loose.dtd"><html><head>'+
'<title>Bildbetrachter</title></head>'+
'<style type="text/css">'+
'body{position:absolute;margin:0;padding:0;}'+
'</style>'+
'<body onload="window.resizeTo(document.images.largePic.width+9, document.images.largePic.height+35);">'+
'<img src="'+Bild+'" name="largePic" alt="'+Bild+'"></body></html>';
var popup = window.open('','popup','resizable=yes, left=250,top=250');
popup.document.write(OUT);
popup.document.close();
popup.window.focus();
} 

