var imagewindow;

function bild_skalieren() {
if (window.resizeTo) {
imagewindow.resizeTo(imagewindow.document.images[0].width+40, imagewindow.document.images[0].height+50);
imagewindow.focus;
}
}

function bild(bild) {
src = "<html><head><meta http-equiv='imagetoolbar' content='no'><title></title></head><body onBlur='self.focus()' ondragstart='return false' onselectstart='return false' onContextMenu='return false' style='margin: 0; padding: 0;' onLoad='opener.bild_skalieren()' style='margin: 0px; padding: 0px;'><table border='0' cellspacing='0' cellpadding='0' width='100%' height='100%'><tr><td valign='middle' align='center'><a href='javascript:window.close()'><img src='"+bild+"' border='0' alt='Auf das Bild klicken, um das Fenster zu schlie&szlig;en...' galleryimg='no'></a></td></tr></table></body></html>";

imagewindow = window.open("", "", "width=10, height=10, top=0, left=0, screenX=0, screenY=0, resizable=no, scrollbars=no");
imagewindow.document.open();
imagewindow.document.write(src);
imagewindow.document.close();
}