<!-- Begin

function replaceChars(entry)

{





out0 = " und ";

out1 = "der ";


out2 = "die "; 


out3 = "das ";





add = "";
add2 = " ";
temp = "" + entry;



while (temp.indexOf(out0)>-1) 
{
pos= temp.indexOf(out0);
temp = "" + (temp.substring(0, pos) + add2 + 
temp.substring((pos + out0.length), temp.length));
}




while (temp.indexOf(out1)>-1) 
{
pos= temp.indexOf(out1);
temp = "" + (temp.substring(0, pos) + add + 
temp.substring((pos + out1.length), temp.length));
}




while (temp.indexOf(out2)>-1) 
{
pos= temp.indexOf(out2);
temp = "" + (temp.substring(0, pos) + add + 
temp.substring((pos + out2.length), temp.length));
}




while (temp.indexOf(out3)>-1) 
{
pos= temp.indexOf(out3);
temp = "" + (temp.substring(0, pos) + add + 
temp.substring((pos + out3.length), temp.length));
}


document.subform.c.value = temp;
}

//  End -->

