<?xml version="1.0"?>
<!-- @ Copyright 1998-2003 W3C (MIT, ERCIM, Keio), All Rights Reserved. See http://www.w3.org/Consortium/Legal/. @ -->
<vxml version="2.0" xmlns="http://www.w3.org/2001/vxml" xmlns:conf="http://www.w3.org/2002/vxml-conformance">
<!-- 
    1083: If a document scope menu grammar is matched while processing
          another form, control transitions to the next or expr specified
          by the matched <choice> element.
-->
  <catch event="pass">
    <conf:pass/>
  </catch>
  
  <catch>
    <conf:comment>
      Toplevel caught event <value expr="_event"/>
    </conf:comment>
    <conf:fail expr="_event"/>
  </catch>

  <form id="form1">
    <field>
      <conf:speech value="alpha"/>
    </field>
  </form>

  <form id="form2">
    <field>
      <conf:speech value="bravo"/>
    </field>
  </form>

  <form id="form3">
    <block>
      <conf:pass/>
    </block>
  </form>
  
  <menu scope="document">
    <choice next="#form2">
      <conf:grammar utterance="alpha"/>
    </choice>
    <choice expr="'#form3'">
      <conf:grammar utterance="bravo"/>
    </choice>
  </menu>

</vxml>


