-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathframes_dhtml.html
More file actions
25 lines (25 loc) · 917 Bytes
/
frames_dhtml.html
File metadata and controls
25 lines (25 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<title>MapServer - Itasca Application</title>
<script language="javascript">
function load_map_frame() {
var template;
var query = location.search.substring(1);
var pairs = query.split("&");
for (var i = 0; i < pairs.length; i++) {
var pos = pairs[i].indexOf('=');
if (pos == -1) continue;
var name = pairs[i].substring(0, pos);
}
parent.map_frame.location.href = "itasca_adds_dhtml.html?" + query;
}
</script>
</head>
<body>
<frameset rows="*,100" frameborder="0" border="0" onLoad="load_map_frame()">
<frame src="blank.html" name="map_frame" marginwidth="5" marginheight="5" scrolling="YES">
<frame src="blank.html" name="query_frame" marginwidth="5" marginheight="5" scrolling="YES">
</frameset>
</body>
</html>