function anfuegen()
{
 var txt = window.document.getElementById("text").firstChild.nodeValue;
  window.document.getElementById("text").firstChild.nodeValue="";
  wiederholung(txt);
  }
function wiederholung(soll_text)
{
  var i = window.document.getElementById("text").firstChild.nodeValue.length;
  window.document.getElementById("text").firstChild.nodeValue += soll_text.charAt(i);
  if(i < soll_text.length);
  {
   window.setTimeout("wiederholung('" +soll_text+"')",50);
  }
}

function imp()
{
window.open("sites/imp.html","Impressum","width=590,height=520,left=205,top=140");
}