<!-- ---------------------------------------------------- -->
<!-- JavaScript                                           -->
<!-- ---------------------------------------------------- -->

// Klapp-Funktion fuer den Navigator
/*function ShowMenu(id)
// Function that will swap the display/no display for
// all content within span tags
{
    var content = document.getElementById(id);
    if (content.style.display == "none")
    {
        content.style.display = "";
    }
    else
    {
        content.style.display = "none";
    }
}
*/

function ShowMenu(Layer_Name)
{
  var GECKO = document.getElementById? 1:0 ;
  var NS = document.layers? 1:0 ;
  var IE = document.all? 1:0 ;

  if (GECKO)
       {document.getElementById(Layer_Name).style.display=
	   (document.getElementById(Layer_Name).style.display=='block') ? 'none' : 'block';}
  else if (NS)
       {document.layers[Layer_Name].display=(document.layers[Layer_Name].display==
	   'block') ? 'none' : 'block';}
  else if (IE)
       {document.all[Layer_Name].style.display=(document.all[Layer_Name].style.display==
	   'block') ? 'none' : 'block';}
}