<?xml version="1.0"?>
<%@ page contentType="text/xml" %>
  <vxml version="1.0">
<!-- Plays an error message when the user chooses an invalide message number.
Gets another message number and redirects to EmailServlet with request type of chkmsg. -->
    <form>
      <field name="messnum">   
	<!-- Grammer for capturing any arbirary number of DTMF digits -->   
	<grammar>   
	  <![CDATA[
	  TM_DTMF_DigitString
	  ]]>
	</grammar>    
	<prompt>    
	  <% 
	  // Get the error message & play it
	  String error = (String)request.getAttribute("error");
	  if(error != null) 
	  out.println("<audio>"+error+"</audio>");
	  %>
	  
	  <!-- Ask the user for a message number -->
	  <audio>Message Number?</audio>   
	  <audio src="http://resources.tellme.com/audio/earcons/timeout.wav"/>
	</prompt>     
	<noinput><audio>I'm sorry I didn't get that.</audio>
	  <reprompt/></noinput>
	<!-- Sends a new request to EmailServlet -->	<filled>   
	  <goto next="apps.email.EmailServlet?action=chkmsg&amp;msgnum={messnum}"/>
	</filled>
      </field>
    </form>
  </vxml>
  