/* E-Mail-Adresse drucken */
function print_email(tld,user,domain) {
        document.write(user + '@' + domain + '.' + tld);
}


/* Neues Fenster f. Thumbnails */
function Zoom (img, file, id, width, height, gfp, window_x, window_y) {
         open("/img.ffp?action=show&img=" + img + "&file=" + file + "&id=" + id
                                          + "&width=" + width + "&height=" + height + "&win_width=" + window_x + "&win_height=" + window_y
                                          + "&gfp=" + gfp,
              "Zoom",
              "width="+window_x+",height="+window_y+",resizable=1,scrollbars=1,status=0,menubar=0,position: left=0px; top=0px");
}


/* Elemente im Dokument anzeigen und verstecken
   und Grafiken dafuer aendern
 */
function toggle_view(objekt,img) {


         /* DOM */

         if(document.getElementById) {

            objekt = document.getElementById(objekt);
            image  = document.getElementById(img);

            if (objekt.style.display != 'none') {
                objekt.style.display  = "none";
                image.src = "/img/ein.png";

            }

            else {
                  objekt.style.display = "block";
                  image.src = "/img/aus.png";
            }


         }

}
