1<%-- $HeadURL: svn+ssh://jwilden@svn.wald.intevation.org/deegree/apps/igeoportal-standard/branches/2.5_testing/modules/gazetteer/gazwindow.jsp $
2 This file is part of deegree, http://deegree.org/
3 Copyright (C) 2001-2009 by:
4 - Department of Geography, University of Bonn -
5 and
6 - lat/lon GmbH -
7
8 This library is free software; you can redistribute it and/or modify it under
9 the terms of the GNU Lesser General Public License as published by the Free
10 Software Foundation; either version 2.1 of the License, or (at your option)
11 any later version.
12 This library is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
15 details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with this library; if not, write to the Free Software Foundation, Inc.,
18 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
20 Contact information:
21
22 lat/lon GmbH
23 Aennchenstr. 19, 53177 Bonn
24 Germany
25 http://lat-lon.de/
26
27 Department of Geography, University of Bonn
28 Prof. Dr. Klaus Greve
29 Postfach 1147, 53001 Bonn
30 Germany
31 http://www.geographie.uni-bonn.de/deegree/
32
33 e-mail: info@deegree.org
34--%>
35<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
36<html>
37	<head>
38		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
39		<meta name="author" content="Judit Mays, lat/lon GmbH">
40        <meta name="KeyWords" content="deegree iGeoPortal lat/lon" />
41        <title>deegree WFS Gazetteer</title>
42        <link href="../../css/deegree.css" rel="stylesheet" type="text/css" />
43		<style type="text/css">
44		<!--
45			.sel {width: 200px;}
46			.inp {width: 180px;}
47		-->
48		</style>
49		<script language="JavaScript1.2" type="text/javascript">
50			function switchGaz(){
51				var list = document.getElementById( "switch" );
52			    var i = list.options.selectedIndex;
53			    var iframe = document.getElementById( "gazetteer" );
54				iframe.src = list.options[i].value;
55			}
56		</script>
57	</head>
58	<body class="pGazWindow">
59		<table border="0" cellspacing="8">
60			<tr>
61				<td><b>Search for ...</b></td>
62			</tr>
63			<tr>
64				<td>
65					<select class="sel" id="switch" size="1" onchange="switchGaz();" )>
66						<option value="gaz_a.jsp">Counties/Municipalities</option>
67						<option value="gaz_b.jsp">free search Munic.ed.</option>
68                        <option value="gaz_c.jsp">free search ZipCodes</option>
69						<!-- more options may be added here. something like: -->
70						<!--
71						<option value="gaz_d.jsp">ZipCodes</option>
72 			    		-->
73					</select>
74				</td>
75			</tr>
76		</table>
77		<iframe width="100%" height="175" id="gazetteer" src="./gaz_a.jsp" frameborder="0"></iframe>
78	</body>
79</html>