function showPicture(PicPath, PicComment, PicWidth, PicHeight)
{
    msg = '<img src="' + PicPath + '" /><br /><br />' + PicComment;

    pictureBox(msg, 'Weiter', 'Zurück', PicWidth, PicHeight);

	$(window).keyup(function(e) {if (e.which == 27) pictureBoxClose(); });

    $('#picBoxPrevious').click(function () {
        pictureBoxClose();
        window.location.href = '?section=1';
    });

    $('#picBoxClose').click(function () { pictureBoxClose(); });
}

