
function show_pic(windowwidth,windowheight,url,target,picture,picturetext) 
{
    var picwindow, screenwidth, screenheight, windowattribute;
    screenwidth=screen.width;
    screenheight=screen.height;
    windowattribute="left="+(screenwidth-windowwidth)/2+" "+", top="+(screenheight-windowheight)/2+ ", height="+windowheight + ", width="+windowwidth;
    picwindow=window.open(url,target,windowattribute);
    picwindow.focus();
    picwindow.document.open();
    with (picwindow) 
    {
        document.write('<html><head><title>Fotoansicht</title></head>');
        document.write('<body onblur="window.close()" leftmargin="0" topmargin="0">');
        document.write('<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">');
        document.write('<tr><td align="center" valign="middle">');
        document.write('<a href="javascript:window.close();">');
        document.write('<img src="'+ picture +'" style="border:1px solid #000000;"></a><br>');
        document.write('<font face="Arial,Helvetica,sans-serif" size="-1">'+picturetext+'</font><br>');
        document.write('</td></tr></table></body></html>');
    }
    picwindow.document.close();
}
