<!--
function show(Picture,Breit,Hoch,pname)
{
xsize = Breit+40; // Zusatz für Rand rechts und links
ysize = Hoch+90; //Zusatz für Rand oben und unten - damit Button angezeit werden kann

normalxsize=Breit;
normalysize=Hoch;

ScreenWidth = screen.width;
ScreenHeight = screen.height;

if (xsize>=ScreenWidth){
    scrollbars='yes';
    xsize=ScreenWidth;
    }
if (ysize>=ScreenHeight){
    scrollbars='yes';
    ysize=ScreenHeight;
    }
else {
    scrollbars='no';
    }

xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/2)-(ysize/2);

        NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars="+scrollbars+",resizable=no,top="+ypos+",left="+xpos+"");
        NewWindow.document.write ("<html><head><title>"+pname+"");
        NewWindow.document.write ("</title></head>");
        NewWindow.document.write ("<body style='background-image: url(); background-repeat: no-repeat; background-position: top right;' leftMargin=0  topMargin=0 bgcolor='#ffffff' onload='focus()'>");

        NewWindow.document.write ("<div align='center' style='margin-bottom:0px; margin-top:10px;margin-left:10px;margin-right:10px;'><img alt='"+pname+"' src=");
        NewWindow.document.write (Picture);
        NewWindow.document.write (">");
        NewWindow.document.write ("<div style='font-size:11px; font-family:arial; text-align:center;'><br>&copy; 2007 DuisburgSport</div>");
        NewWindow.document.write ("<div style='margin-top:0px; padding-right:10px; font-size:11px; font-family:arial; text-align:right;'><a href=\"javascript:self.close();\">Fenster schliessen<img style='margin-left:7px;' src='img/close.png' border='0' alt='Fenster schliessen' title='Fenster schliessen'></a></div>");
        NewWindow.document.write ("</div></body></html>");
        NewWindow.document.close();
        NewWindow.resizeTo(xsize,ysize);
}
//-->