function ortschaftenvorschlag_init()
{
 ortschaftvorschlag = new FeldVorschlagObjekt('ortschaftvorschlag');
 ortschaftvorschlag.erzeugen('herkunftsortbox','herkunftsort','/daten/ajax/orschaftvorschlag.php?wort=','vorschlagsliste');
 ortschaftvorschlag.aktivieren();
}

var ortschaftenvorschlag_temporaereronload = window.onload;
window.onload = function() {
     if(typeof(ortschaftenvorschlag_temporaereronload) == "function")
     {
       ortschaftenvorschlag_temporaereronload();
     }
     ortschaftenvorschlag_init();
}

function ortschafteinfuegen(sw) {
 var vorher = '';
 if(document.getElementById('herkunftsort').value!='')
 {
   vorher = document.getElementById('herkunftsort').value;
   vorher = vorher.substring(0,vorher.lastIndexOf(','));
   if(vorher.length>0)
   {
    vorher = vorher + ', ';
   };
 }
 document.getElementById('herkunftsort').value = vorher + sw;
 return;
}


