/* 覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧 *
 *  tools.js 
 * 覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧覧 */

  function AddToFavorites(url,title) 
  { 
    if (window.sidebar) // Mozilla Firefox Bookmark		
    { 
      window.sidebar.addPanel(title, url,"");	
    } 
    else if(window.external)  // IE Favorite		
    { 
      window.external.AddFavorite( url, title); 
    }	
    else if(window.opera && window.print) // Opera Hotlist		
    { 
      return true; 
    } 
  }

  function checkForm() 
  {
    if ((document.kontform.name.value == ""))
    {
      alert("Bitte geben Sie Ihren Namen ein.");
      return false;
    }
    document.kontform.submit();
    return true;
  }
  
  function statusText(text)
  {
   name1=text;
   setTimeout("window.status=name1;",0.1);
   return true;
  }
  
  
      
  function hoverIE() 
  {
    if (navigator.userAgent.indexOf("MSIE 6") != -1)
    {      
      if(window.navigator.systemLanguage && !window.navigator.language) 
      {
        var LI = document.getElementById("mainNav").firstChild;
        do 
        {
          if (sucheUL(LI.firstChild)) 
          {
            LI.onmouseover=einblenden; LI.onmouseout=ausblenden;
          }
          LI = LI.nextSibling;
        }
        while(LI);
      }
    }
  }

  function sucheUL(UL)
  {      
    do 
    {
      if(UL) UL = UL.nextSibling;
      if(UL && UL.nodeName == "UL") return UL;
    }
    while(UL);
    return false;
  }

  function einblenden()
  {
    var UL = sucheUL(this.firstChild);
    UL.style.visibility = "visible";
  }
  
  function ausblenden() 
  {
    sucheUL(this.firstChild).style.visibility = "hidden";
  }
    
/* ------------------------------------------------------------------------------ *
 * (C) multi-INTER-media GmbH
 *     Letzte Aenderung : 13.06.2006
 * ------------------------------------------------------------------------------ */


