<?xml version="1.0" encoding="iso-8859-1"?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ev="http://www.w3.org/2001/xml-events">
<head>
  <title>Spoken Language Applications - Project 3</title>
	<link rel="stylesheet" type="text/css" href="main.css"/>
	<form xmlns="http://www.w3.org/2001/vxml" id="promptUser">
		<field name="destination">
			<prompt bargein="true">Which location would you like to view?</prompt>
			<grammar><![CDATA[
				#JSGF V1.0;
				grammar menu;
				public <menu> = chicago | new york | washington | d c | kennedy space center |
					kennedy | next | previous | back | first | last; 
					]]>
			</grammar>
			<nomatch>I don't understand.</nomatch>
		</field>
		<filled>
			<if cond="destination=='next'">
				<assign name="window.location" expr="'chicago.xml'"/>
			<elseif cond="(destination=='previous' || destination=='back' || destination=='first')"/>
				<prompt bargein="true">You're already at the beginning of the slide show.</prompt>
				<clear namelist="destination"/>
			<elseif cond="destination=='last'"/>
				<assign name="window.location" expr="'kennedy.xml'"/>
			<elseif cond="destination=='new york'"/>
				<assign name="window.location" expr="'ny.xml'"/>
			<elseif cond="(destination=='washington' || destination=='d c')"/>
				<assign name="window.location" expr="'dc.xml'"/>
			<elseif cond="(destination=='kennedy' || destination=='kennedy space center')"/>
				<assign name="window.location" expr="'kennedy.xml'"/>
			<elseif cond="destination=='chicago'"/>
				<assign name="window.location" expr="'chicago.xml'"/>
			</if>
		</filled>
	</form>
</head>
<body ev:event="load" ev:handler="#promptUser">
	<h1>My Brother's Graduation Trip</h1>
	<table width="100%" border="0" cellpadding="6">
		<tr><td>
			<table width="100%" border="0" cellpadding="6" cellspacing="0" style="border: solid 1px #000000;">
				<tr>
					<td width="25%" class="header" onmouseover="this.className='header_over'" onmouseout="this.className='header'">
						<a href="chicago.xml">Chicago</a></td>
					<td width="25%" class="header" onmouseover="this.className='header_over'" onmouseout="this.className='header'">
						<a href="ny.xml">New York</a></td>
					<td width="25%" class="header" onmouseover="this.className='header_over'" onmouseout="this.className='header'">
						<a href="dc.xml">Washington D.C.</a></td>
					<td width="25%" class="header" onmouseover="this.className='header_over'" onmouseout="this.className='header'">
						<a href="kennedy.xml">Kennedy Space Center</a></td>
				</tr>
			</table>
		</td></tr>
		<tr><td>
			<table border="0" cellpadding="6" cellspacing="4">
				<tr>
					<td align="right">Chicago</td>
					<td><a href="chicago.xml"><img src="chicago.JPG" width="223" height="167" border="0" style="border: solid 2px #000000;"/></a></td>
					<td align="right">New York</td>
					<td><a href="new_york.xml"><img src="ny.JPG" width="230" height="307" border="0" style="border: solid 2px #000000;"/></a></td>
				</tr>
				<tr>
					<td align="right">Washington D.C.</td>
					<td><a href="dc.xml"><img src="dc.JPG" width="238" height="218" border="0" style="border: solid 2px #000000;"/></a></td>
					<td align="right">Kennedy Space Center</td>
					<td><a href="kennedy.xml"><img src="kennedy.JPG" width="153" height="204" border="0" style="border: solid 2px #000000;"/></a></td>
				</tr>
			</table>
		</td></tr>
	</table>
</body>
</html>
