    function my_language ()
    {
       if (document.getElementById("auswahl").style.visibility == "visible")
       {
           document.getElementById("auswahl").style.visibility="hidden";
           document.getElementById("kante").style.visibility="visible";
       }

       else
       {
            document.getElementById("auswahl").style.visibility="visible";
            document.getElementById("kante").style.visibility="hidden";
       }
    }

    function drucken()
    {
        if ((document.all) || (document.getElementById))
        {
            y = "<html><head><title>";
            y = y + document.title+"</title></head><body>";
            if (document.all)
            {
           	  y = y + document.all.druck.outerHTML;
            }
            else if (document.getElementById)
            {
             	  y = y + document.getElementById("druck").innerHTML;
            }
            y = y + "</body></html>";
            win = window.open("", "Druckansicht", "scrollbars=yes,menubar=yes,toolbar=yes");
            win.document.write(y);
            win.focus();
        }
    }
