<!-- Begin

function mylauf(bild) {
  myclear();
  if (false == document.getElementById("lauf").hasChildNodes()) {
   var lauf = document.createElement("img");
   lauf.setAttribute("src", bild);
   var Ausgabebereich = document.getElementById("lauf");
   Ausgabebereich.appendChild(lauf);
  }
 }

 function myclear() {
 if (document.getElementById("lauf").hasChildNodes()) {
   if (document.getElementById("lauf").firstChild.nodeName == "IMG") {
    while(document.getElementById("lauf").hasChildNodes()){
     var Knoten=document.getElementById("lauf").firstChild;
     document.getElementById("lauf").removeChild(Knoten);
     document.getElementById("lauf").style.backgroundColor = "";
    }
   }
  }
 }
// End -->
