function showpic(link, format) {
    var breite, hoehe;
    if (format == 'quer') {
        breite = 650;
        hoehe = 500;
    }
    else if (format == 'hoch') {
        breite = 450;
        hoehe = 700;
    }
/*    else {
        alert("Fehler beim Öffnen des Bildes!\nKein Format angegeben!\n\nBild Nr. " + num);
        return;
    }*/
    
    //if (!text) text= "";
    wind = window.open(link,"_blank","width=" + breite + ",height=" + hoehe + ", left=50, top=50, location=no, menubar=no, resizable=no, scrollbars=no, status=no, toolbar=no");
    return wind;
}

