
  function erklaerung()
  {    
    var d = document.createElement("div");
    
    
    d.id = "erkl";
    
    with(d.style)
    {

     position = "absolute";
 		top = "50px";
  		left  = "10px";
      width = "760px";
      height = "859px";
      //backgroundColor = "#e0e0e0";
      backgroundColor = "#dddddd";
     padding = "10px";
      paddingBottom = "15px";
      border = "solid 1px #707070";
      
    }
    
    
 d.innerHTML = "<img src=\"images/ansicht3.png\" alt=\"Lebensversicherung\" style=\"padding: auto; margin: auto;\" />"
 
    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);
}
