<!DOCTYPE html PUBLIC "-//VoiceXML Forum//DTD XHTML+Voice 1.2//EN"
"http://www.voicexml.org/specs/multimodal/x+v/12/dtd/xhtml+voice12.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ev="http://www.w3.org/2001/xml-events">

<head>
  <title>Online Unit Calculator</title>
  <form xmlns="http://www.w3.org/2001/vxml" id="greeting">
    <field name="conversiontype">
        <prompt>
        Welcome to the Online Unit Calculator. 
        Speak the kind of unit conversion that you want from the following choices. 
        Temperature.
        Length,
        or
        Weight.
        </prompt>
        <option value="temp">Temperature</option>
        <option value="length">Length</option>
        <option value="weight">Weight</option>
        <nomatch>Try again.</nomatch>
        <filled>
            <assign name="window.location" expr="conversiontype+'.xml'"/>
        </filled>
    </field>
  </form>
</head>

<body ev:event="load" ev:handler="#greeting">
  <h1>Welcome to the Online Unit Calculator</h1>
  <table border ="1">
    <tr>
      <td><center><b><a href="temp.xml">Temperature</a></b></center></td>
      <td><center><b><a href="length.xml">Length</a></b></center></td>
      <td><center><b><a href="weight.xml">Weight</a></b></center></td>
    </tr>  
    <tr>
      <td><a href="temp.xml"><img src="hotcold.jpg" width="200" height="200"></img></a></td>
      <td><a href="length.xml"><img src="length.jpg" width="200" height="200"></img></a></td>
      <td><a href="weight.xml"><img src="weight.jpg" width="200" height="200"></img></a></td>
    </tr>  
  </table>
</body>
</html>

