// JavaScript Document
function fnHausText(haus_text) 
{ 
 document.hausbau.haustext.value = haus_text;
} 



var msg = "  Ackon - Das erfolgreiche Immobiliensystem aus Kanada ...             ";
var txt = msg; 
   
function lauftext()
  {
  window.document.lauf.lauftext.value = txt;
  self.defaultStatus = txt;
  // Lauftext um ein Zeichen nach links schieben
  txt = txt.substring(1, txt.length) + txt.substring(0, 1);
  // Timeout fuer naechste Ausgabe setzen
  Text=window.setTimeout("lauftext()", 200);
  }
  
  
  
function feld_leeren_1()
  {
  window.document.login.username.value = "";
  }
  
  
function feld_leeren_2()
  {
  window.document.login.passwort.value = "";
  }
