
   //var offen ="";

   function auf(x)
   {
     document.getElementById(x).style.visibility = "visible";
   }

   function zu(x)
   {
     document.getElementById(x).style.visibility = "hidden";
   }

   function klapp_auf(x)
   {
    if(offen != x )
    {
      auf(x);
      offen=x;
    }
    else
    {
      zu(x);
      offen="";
     }
    }

   function ueberpruefe(x)
   {
      if(offen && offen != x)
      {
        zu(offen);
        auf(x);
        offen=x;
       }
    }

function Wechsel(Name,Bild)
{
   window.document[Name].src=Bild.src;
}

