flow.add(new PFlow("this is the FIRST page MONDAY 28"));
flow.add(new PFlow("and now the SECOND page of my speech application."));
// flow.add(new QFlow("abc.grxml", "what size is it?"));
QuestionFlow qflow = new QuestionFlow("", "what size? {audio:welcome.wav}");
InlineGrammar gram = new InlineGrammar("yes no");
gram.addBinding("confirm", "city");
qflow.addGrammar(gram);
flow.add(qflow);
flow.add(new PFlow("back from the big question. City is {$M.city} {audio:audio/Greeting.wav}"));
return flow;