<!--  
  function erklaerung(txt)
  {    
    var d = document.createElement("div");
    
    
    d.id = "erkl";
    
    with(d.style)
    {
      width = "250px";
      //backgroundColor = "#e0e0e0";
      backgroundColor = "#FFFEE0";
      position = "absolute";
      left = "480px";
      top = "170px";
      padding = "10px";
      paddingBottom = "15px";
 		paddingLeft = "30px";
      border = "solid 2px #009000";
     
    }
    
    
    
    
    d.innerHTML = "<b>Bemessungsgrenze f&uuml;r 2012</b><br /><br />" + txt.replace("\n", "<br />");
    
    document.body.appendChild(d);
    
  }

  function close_erklaerung()
  {
    if(document.all)
      var d_alt = document.all.erkl;
    else
      var d_alt = document.getElementById("erkl");
          
    if(d_alt)
      document.body.removeChild(d_alt);
  }
//-->
