def Answer(kall)
 kall.playMessage('helloworld')
 kall.waitIfPlaying(-1)
 syn = kall.getSynthesizer()
 syn.speak('Please press a key on your telephone''s keypad.')
 ok = kall.inputWait1(1, '#', 10000)
 if ok
  syn.speak( 'You entered ' + kall.getChar() + ' .' )
 else
  syn.speak( 'You entered nothing.' )
 end 
 syn.speak('That was easy, wasn''t it?')
 syn.wait(-1)
 
end