// Browserauswahl

        var browser, c, vnum, brin, ie, nc, nc4, nc6, op, ie4;
        ie=false; nc=false; nc4=false; nc6=false; op=false;
        c=navigator.appVersion;
        vnum=c.charAt(22)+c.charAt(23)+c.charAt(24);
        browser=navigator.userAgent;
        brin=browser.indexOf ("Opera");
        opver=navigator.appVersion.charAt(0);

               if (navigator.appName=='Netscape' && navigator.appVersion.charAt(0)>='4' && brin<=-1)
                     {
                             if (navigator.appVersion.charAt(0)>='5' )    // NC6
                             {
                                nc=true;
                                nc6=true;
                             }
                             else                                        // NC4
                             {
                                nc=true;
                                nc4=true;
                               }
                }


// Definition der Buttons

                home1=new Image();
                home1.src="bilder/ihome.gif";
                home2=new Image();
                home2.src="bilder/ihomeakt.gif";
                sammlung1=new Image();
                sammlung1.src="bilder/icollect.gif";
                sammlung2=new Image();
                sammlung2.src="bilder/icollectakt.gif";
                tausch1=new Image();
                tausch1.src="bilder/itausch.gif";
                tausch2=new Image();
                tausch2.src="bilder/itauschakt.gif";
                kontakt1=new Image();
                kontakt1.src="bilder/ikontakt.gif";
                kontakt2=new Image();
                kontakt2.src="bilder/ikontaktakt.gif";
                links1=new Image();
                links1.src="bilder/ilinks.gif";
                links2=new Image();
                links2.src="bilder/ilinksakt.gif";
                gaeste1=new Image();
                gaeste1.src="bilder/igaeste.gif";
                gaeste2=new Image();
                gaeste2.src="bilder/igaesteakt.gif";
                highlights1=new Image();
                highlights1.src="bilder/ihighlights.gif";
                highlights2=new Image();
                highlights2.src="bilder/ihighlightsakt.gif";
                termine1=new Image();
                termine1.src="bilder/itermine.gif";
                termine2=new Image();
                termine2.src="bilder/itermineakt.gif";
                info1=new Image();
                info1.src="bilder/isammlerinfo.gif";
                info2=new Image();
                info2.src="bilder/isammlerinfoakt.gif";

                var a, Bild;
// Rollover-Maschine:

                  function tauschen (a, Bild)
                {
                          window.document.images[a].src=Bild.src;
                }


// Definitionen, welche Dateien durch Klick auf die Buttons aufgerufen werden:


                function home ()
                {
                       parent.frames[0].location.href="navhome.htm";
                       parent.frames[2].location.href="haupt.htm";
                }

                function collection ()
                {
                        parent.frames[0].location.href="navcollect.htm";
                        parent.frames[2].location.href="sammlung.htm";
                }

                function tausch ()
                {
                        parent.frames[0].location.href="navtausch.htm";
                        parent.frames[2].location.href="tausch0.htm";
                }

                function kontakt ()
                {
                        parent.frames[0].location.href="navkontakt.htm";
                        parent.frames[2].location.href="kontakt.htm";
                }

                function highlights ()
                {
                        parent.frames[0].location.href="navhighlights.htm";
                        parent.frames[2].location.href="highlights.htm";
                }

                function links ()
                {
                        parent.frames[0].location.href="navlinks.htm";
                        parent.frames[2].location.href="links.htm";
                }

                function termine ()
                {
                        parent.frames[0].location.href="navtermine.htm";
                        parent.frames[2].location.href="tausch/termine.htm";
                }

                function info ()
                {
                        parent.frames[0].location.href="navinfo.htm";
                        parent.frames[2].location.href="tausch/info.htm";
                }

            	function gaeste ()
                {
                        parent.frames[0].location.href="navgaeste.htm";
                        parent.frames[2].location.href="gaeste0.htm";
                }

// Einfügen eines zusätzlichen Bildes für Netscape 4

            function zusatz ()
                 {
                        if (nc4==true)
                        {
                        document.write ('<img width="1" height="1" src="bilder/space.gif" border="0">');
                        }

                }
