|
Wenn ein Japaner ")
win.document.write(((otp.charAt(0)).toUpperCase()))
j = 1
while (j <= otp.length - 1) {
win.document.write(otp.charAt(j))
j += 1 }
win.document.write(" zu Ihnen sagt, dann wissen Sie, wer gemeint ist :-) .
")
j = 0
tem = ""
while (j <= otp.length - 1) {
if (!(otp.charAt(j) == " ")) {
tem = tem + otp.charAt(j) }
j += 1 }
otp = tem
j = 0
while (j <= otp.length - 1) {
cur = otp.charAt(j)
if ((isvowel(cur)) || ((cur == "n") && (!isvowel(otp.charAt(j+1))))) {
j += 1 }
else {
while (!isvowel(otp.charAt(j))) {
j += 1
cur = cur + otp.charAt(j) }
j += 1 }
}
win.document.write('
|