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>KP-Business</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="vergroessertes Bild"></body></html>'; 
var popup = window.open('','','resizable=yes,left=60,top=2'); 
popup.document.write(OUT); 
popup.document.close(); 
popup.window.focus(); 
}
