function showImagePopup( image, target, width, height )
{
    width  += 20;
    height += 20;
    Fenster = window.open( image, target, "width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no" );
}

