  var MyTimer = null;
  var MyAktivDivId = 0;

  var MyIE        = false;
  var MyIEAlt     = false;
  var MyIEXP      = false;
  var MyNetscape6 = false;

 	if (document.all)
 	{
 	  MyIE = true;

 	  if (navigator.appVersion.indexOf("NET CLR") != -1)
 	    MyIEXP = true;

 	  if (navigator.appVersion.indexOf("MSIE 5.0") != -1)
 	    MyIEAlt = true;
 	  else if (navigator.appVersion.indexOf("MSIE 5.1") != -1)
 	    MyIEAlt = true;
 	  else if (navigator.appVersion.indexOf("MSIE 5.2") != -1)
 	    MyIEAlt = true;
 	  else if (navigator.appVersion.indexOf("MSIE 5.3") != -1)
 	    MyIEAlt = true;
 	  else if (navigator.appVersion.indexOf("MSIE 5.4") != -1)
 	    MyIEAlt = true;
 	}
 	else if (document.getElementById)
    MyNetscape6 = true;


  function showDiv(PDivId)
  {
    if (MyAktivDivId != "0")
    {
      if (MyIE)
        document.all["dsohn" + MyAktivDivId].style.visibility = "hidden";
      else if (MyNetscape6)
        document.getElementById("dsohn" + MyAktivDivId).style.visibility = "hidden";
    }

    MyAktivDivId = PDivId;

    if (MyTimer != null)
    {
      clearTimeout(MyTimer);
      MyTimer = null;
    }
    if (MyIE)
    {
      document.all["dsohn" + PDivId].style.top  = document.all["dvater" + PDivId].offsetTop + 23;
      document.all["dsohn" + PDivId].style.left = document.all["dvater" + PDivId].offsetLeft - 1;
      document.all["dsohn" + PDivId].style.visibility = "visible";
    }
    else
    {
      document.getElementById("dsohn" + PDivId).style.top  = document.getElementById("dvater" + PDivId).offsetTop + 23;
      document.getElementById("dsohn" + PDivId).style.left = document.getElementById("dvater" + PDivId).offsetLeft - 1;
      document.getElementById("dsohn" + PDivId).style.visibility = "visible";
    }
  } // showDiv

  function hideDiv(PDivId)
  {
    if (MyTimer == null)
    {
      MyTimer = setTimeout("hideDiv(" + PDivId + ")", 1000);
      return;
    }
    MyTimer = null;
    MyAktivDivId = 0;

    if (MyIE)
      document.all["dsohn" + PDivId].style.visibility = "hidden";
    else
      document.getElementById("dsohn" + PDivId).style.visibility = "hidden";
  } // hideDiv
