function showImage(open,anzahl) {
    closeAll(anzahl);
    document.getElementById('single_img_' + open).style.visibility = 'visible';
}

function closeAll(anzahl) {
    for ( i=0;i<anzahl;i++) {
        document.getElementById('single_img_' + i).style.visibility = 'hidden';
    }
}
