<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rs="urn:schemas-microsoft-com:rowset" 
xmlns:z="#RowsetSchema">
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="rs:data">
<table cellpadding='0' cellspacing='0' border='0' class='display' id='example'>
	<thead>
		<tr>
			<th></th>
			<th>State</th>
			<th>Location</th>
			<th style="text-align:center">ICAO Code</th>
			<th style="text-align:center">IATA Code</th>
			<th>AFTN</th>
			<th>Use</th>
			<th style="text-align:center">Loc. Ind. Type</th>
			<th>Latitude</th>
			<th>Longitude</th>
		</tr>
	</thead>
	<tbody>
		<xsl:for-each select="z:row">
			<tr>
				<td>
					<img src="/safety/ANP/scripts/images/details_open.png"/>
				</td>
				<td>
					<xsl:value-of select="@ows_Country"/>
				</td>
				<td>
					<xsl:value-of select="@ows_Location"/>
				</td>
				<td class="center">
					<xsl:value-of select="@ows_LinkTitle"/>
				</td>
				<td class="center">
					<xsl:value-of select="@ows_IATA_x0020_Code_x0020__x0028_3_x"/>
				</td>
				<td class="center">
					<xsl:value-of select="@ows_AFTN"/>
				</td>
				<td class="center">
					<xsl:value-of select="@ows_USE"/>
				</td>
				<td class="center">
					<xsl:value-of select="@ows_LOCID_x0020_Type"/>
				</td>
				<td>
					<xsl:value-of select="@ows_LATcent"/>
				</td>
				<td>
					<xsl:value-of select="@ows_LONGcent"/>
				</td>
			</tr>
		</xsl:for-each>
	</tbody>
	<tfoot>
		<tr>
			<th></th>
			<th><input type="text" name="1" value="Search" class="search_init" /></th>
			<th><input type="text" name="2" value="Search" class="search_init" /></th>
			<th><input type="text" name="3" value="Search" class="search_init" /></th>
			<th><input type="text" name="4" value="Search" class="search_init" /></th>
			<th>
				<select name="5" class="search_init">
					<option value=""></option>
					<option value="Y">Y</option>
					<option value="N">N</option>
				</select>
			</th>
			<th>
				<select name="6" class="search_init">
					<option value=""></option>
					<option value="CIV">CIV</option>
					<option value="MIL">MIL</option>
				</select>
			</th>
			<th>
				<select name="7" class="search_init">
					<option value=""></option>
					<option value="AD">AD</option>
					<option value="HEL">HEL</option>
				</select>
			</th>
			<th>8</th>
			<th>9</th>
		</tr>
	</tfoot>
</table>
</xsl:template>
</xsl:stylesheet>