<!--
/* -------------------------------------------------- */
/* Standard-JavaScript für Land (jeweils Laie + Fach) */
/* -------------------------------------------------- */

var i = 0;

ABC = new Array();
ABC[1]  = "a";
ABC[2]  = "b";
ABC[3]  = "c";
ABC[4]  = "d";
ABC[5]  = "e";
ABC[6]  = "f";
ABC[7]  = "g";
ABC[8]  = "h";
ABC[9]  = "i";
ABC[10] = "j";
ABC[11] = "k";
ABC[12] = "l";
ABC[13] = "m";
ABC[14] = "n";
ABC[15] = "o";
ABC[16] = "p";
ABC[17] = "q";
ABC[18] = "r";
ABC[19] = "s";
ABC[20] = "t";
ABC[21] = "u";
ABC[22] = "v";
ABC[23] = "w";
ABC[24] = "x";
ABC[25] = "y";
ABC[26] = "z";


var Current = "";
var OnMouseOverNavigationColor = "#FFF7A0";
var OnMouseOutNavigationColor = "#e0e0e0";
function OnMouseOverNavigation(Link)
{
  if (Link != Current)
  {
    Link.style.background = OnMouseOverNavigationColor;
  }
}
function OnMouseOutNavigation(Link)
{
  if (Link != Current)
  {
    Link.style.background = OnMouseOutNavigationColor;
  }
}


var loc = self.location.href;
var i = loc.lastIndexOf("#");
if (i != "-1")
{
	loc = loc.substring(0, i);
}
function Druckversion()
{
  var URL = loc + "&Anzeige=druckversion/";
  var Druckversion = window.open(URL, "Druckversion", "width=640, height=480, resizable=yes, scrollbars=yes, menubar=yes, toolbar=no, directories=no, location=no, status=no, copyhistory=no");
}
//-->
