function largeImg(img, imgwidth, imgheight) {
    if (largeImg.arguments[3] != null) {
        title = largeImg.arguments[3].value;
    } else {
        title = "Schubies Welt - Bildchen";
    }
    imgWindow = window.open("", "LargeImgWindow", "width="+imgwidth+",height="+imgheight+",resizable=no,status=no,scrollbars=no");
    imgWindow.document.open();
    imgWindow.document.writeln("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"");
    imgWindow.document.writeln("\"http://www.w3.org/TR/html4/loose.dtd\">");
    imgWindow.document.writeln("<html>");
    imgWindow.document.writeln("<head>");
    imgWindow.document.writeln("<title>"+title+"</title>");
    imgWindow.document.writeln("<style type=\"text/css\">");
    imgWindow.document.writeln("body { margin:0; padding:0; background-color:#333333; }");
    imgWindow.document.writeln("img { margin:auto; border:0;}");
    imgWindow.document.writeln("</style>");
    imgWindow.document.writeln("</head>");
    imgWindow.document.writeln("<body>");
    imgWindow.document.writeln("<a href=\"javascript:window.close();\"><img src=\""+img+"\" width=\""+imgwidth+"\" height=\""+imgheight+"\" alt=\""+img+"\" /></a>");
    imgWindow.document.writeln("</body>");
    imgWindow.document.close();
    imgWindow.focus();
}
