<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">

<wml> 
<template>
  <do type="prev" label="Back"><prev/></do>
</template>

<card id="home" title="GeoCaching WAP Interface"> 
<p>
<a href="#find">Find Nearest Caches</a><br/>
<a href="#describe">Describe Cache</a><br/>
<a href="#logs">Show Logs</a><br/>
<a href="#send">Take Webcam Picture</a><br/>
<a href="GCI2.wml">About this Service</a><br/>
</p>
<p align="left">Happy Hunting !<br/>
Thomas Hoppe</p> 
</card> 

<card id="find" title="Find Nearest Caches"> 
<p>Enter Current Position (WGS84)<br/>
Latitude: 
<input name="LaDir" value="N" size="1" maxlength="1" format="1X"/>
<input name="LaDeg" size="2" maxlength="2" format="2N"/>&#176; 
<input name="LaMinSec" size="6" maxlength="6" format="NN\.NNN"/>
</p>
<p>Longitude: 
<input name="LoDir" value="E" size="1" maxlength="1" format="1X"/>
<input name="LoDeg" size="3" maxlength="3" format="3N"/>&#176; 
<input name="LoMinSec" size="6" maxlength="6" format="NN\.NNN"/>
</p>
<p>
<anchor>
  Find
  <go href="cgi-bin/GCFind.pl" method="get">
    <postfield name="ladir" value="$(LaDir)"/>
    <postfield name="ladeg" value="$(LaDeg)"/>
    <postfield name="laminsec" value="$(LaMinSec)"/>
    <postfield name="lodir" value="$(LoDir)"/>
    <postfield name="lodeg" value="$(LoDeg)"/>
    <postfield name="lominsec" value="$(LoMinSec)"/>
  </go>
</anchor>
</p>
</card> 

<card id="describe" title="Describe Cache">
<p>Die Koordinatenanzeige funktioniert derzeit leider nicht mehr!</p>
<p>Enter Waypoint: <input name="waypoint" size="6" maxlength="6" format="6X"/>
<anchor>
  Describe
  <go href="cgi-bin/GCDesc.pl" method="get">
    <postfield name="waypoint" value="$(waypoint)"/>
    <postfield name="justldesc" value="no"/>
  </go>
</anchor>
</p>
</card> 

<card id="logs" title="Show Logs"> 
<p>Enter Waypoint: <input name="waypoint" size="6" maxlength="6" format="6X"/>
<anchor>
  Show logs
  <go href="cgi-bin/GCLogs.pl" method="get">
    <postfield name="waypoint" value="$(waypoint)"/>
	<!--    <postfield name="justldesc" value="no"/> -->
  </go>
</anchor>
</p>
</card> 

<card id="send" title="Send Webcam Picture"> 
<p>Enter Picture URL: 
<input name="url" value="http://" size="100" maxlength="100" format="100X"/>
</p>
<p>Enter your Email Adress: 
<input name="email" size="100" maxlength="100" format="100X"/>
<anchor>
  Send picture now
  <go href="cgi-bin/SWCP.pl" method="post">
    <postfield name="url" value="$(url)"/>
    <postfield name="email" value="$(email)"/>
  </go>
</anchor>
</p>
</card> 

</wml>

