Project

General

Profile

1 5509 leinfelder
<%@ page language="java"%>
2
<%
3
/**
4
 *
5
 * '$RCSfile$'
6
 * Copyright: 2008 Regents of the University of California and the
7
 *             National Center for Ecological Analysis and Synthesis
8
 *    '$Author$'
9
 *      '$Date$'
10
 * '$Revision$'
11
 *
12
 * This program is free software; you can redistribute it and/or modify
13
 * it under the terms of the GNU General Public License as published by
14
 * the Free Software Foundation; either version 2 of the License, or
15
 * (at your option) any later version.
16
 *
17
 * This program is distributed in the hope that it will be useful,
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 * GNU General Public License for more details.
21
22
 * You should have received a copy of the GNU General Public License
23
 * along with this program; if not, write to the Free Software
24
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
 */
26 5385 leinfelder
%>
27 5632 leinfelder
28 5509 leinfelder
<%@ include file="../../common/common-settings.jsp"%>
29
<%@ include file="../../common/configure-check.jsp"%>
30 5604 leinfelder
31 5385 leinfelder
<html>
32
<head>
33 5509 leinfelder
<title>Semantic search</title>
34
<link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/semtools/semtools.css">
35 5703 leinfelder
<link rel="stylesheet" type="text/css" href="<%=STYLE_COMMON_URL%>/jquery/jqueryui/css/smoothness/jquery-ui-1.8.6.custom.css">
36 5509 leinfelder
37 5703 leinfelder
<script language="javascript" type="text/javascript" src="<%=STYLE_COMMON_URL%>/jquery/jquery.js"></script>
38
<script language="javascript" type="text/javascript" src="<%=STYLE_COMMON_URL%>/jquery/jsTree/_lib/jquery.cookie.js"></script>
39
<script language="javascript" type="text/javascript" src="<%=STYLE_COMMON_URL%>/jquery/jsTree/jquery.jstree.js"></script>
40
<script language="javascript" type="text/javascript" src="<%=STYLE_COMMON_URL%>/jquery/jqueryui/js/jquery-ui-1.8.6.custom.min.js"></script>
41
<script language="javascript" type="text/javascript" src="<%=STYLE_COMMON_URL%>/jquery/busy/jquery.busy.js"></script>
42 5669 leinfelder
43 5703 leinfelder
<script language="javascript" type="text/javascript" src="<%=STYLE_SKINS_URL%>/semtools/search.js"></script>
44 5509 leinfelder
<script language="javascript" type="text/javascript" src="<%=STYLE_SKINS_URL%>/semtools/semtools.js"></script>
45
<script language="javascript" type="text/javascript" src="<%=STYLE_COMMON_URL%>/branding.js"></script>
46
47 5656 leinfelder
<script language="Javascript" type="text/JavaScript"><!--
48 5633 leinfelder
function populateActiveDomain(divId, class) {
49 5656 leinfelder
	// collect the filtering values we have so far
50
	// these are hidden input fields in the form for holding the selected values
51
	var entity = $("#activeEntitiesValue").val() ? $("#activeEntitiesValue").val() : "";
52
	var characteristic = $("#activeCharacteristicsValue").val() ? $("#activeCharacteristicsValue").val() : "";
53
	var protocol = $("#activeProtocolsValue").val() ? $("#activeProtocolsValue").val() : "";
54
	var measurement = $("#activeMeasurementsValue").val() ? $("#activeMeasurementsValue").val() : "";
55 5633 leinfelder
56 5656 leinfelder
	// TODO: remember the selected value for this when filtering by active domain
57
	var selectedNode = $("#" + divId).jstree("get_selected", $("#" + divId));
58
	var selectedNodeId = $(selectedNode).attr("id");
59 5668 leinfelder
	//alert(divId + " selected node: " + selectedNodeId);
60 5656 leinfelder
61
	// load the tree for the given div, passing in the other filtered values
62 5633 leinfelder
	$("#" + divId).load(
63 5656 leinfelder
		"<%=SERVLET_URL%>",
64
		{
65
			'action': "getactivedomain",
66
			'class': class,
67
			'entity': entity,
68
			'characteristic': characteristic,
69
			'protocol': protocol,
70
			'measurement': measurement
71
		},
72
		// call back function when loading finishes
73
		function(response, status, xhr) {
74
			//alert("callback for: " + divId + " selected node: " + selectedNodeId);
75
			// error
76
			if (status == "error") {
77
				var msg = "Sorry but there was an error: ";
78
				$("#error").html(msg + xhr.status + " " + xhr.statusText);
79
			}
80
81
			// make it a js tree
82
			$(function () {
83
				$("#" + divId)
84 5660 leinfelder
					//bind calls here
85 5656 leinfelder
					.jstree({
86
						"ui" : {
87
							"select_limit" : 1,
88
							"select_multiple_modifier" : "alt",
89
							"selected_parent_close" : "select_parent"//,
90
							//"initially_select" : [ selectedNodeId ]
91 5659 leinfelder
						},
92
						"themes" : {
93
							"theme" : "default",
94
							"dots" : true,
95
							"icons" : false
96
						},
97 5656 leinfelder
						//"core" : { "initially_open" : [ selectedNodeId ] },
98 5658 leinfelder
						"search" : { "case_insensitive" : true },
99 5668 leinfelder
						//"cookies" : {
100
						//		"save_opened" : "jstree_open_" + divId,
101
						//		"save_selected" : "jstree_select_" + divId,
102
						//},
103 5666 leinfelder
						"plugins" : [
104
							"themes",
105
							"html_data",
106
							"ui",
107 5668 leinfelder
							//"cookies",
108 5666 leinfelder
							"search" ]
109 5656 leinfelder
					});
110
			});
111
112 5658 leinfelder
			// enable searching on it
113
			$("#" + divId + "Search").keyup(
114
				function () {
115 5688 leinfelder
					var searchTerm = $("#" + divId + "Search").val();
116
					if (searchTerm.length >= 3) {
117 5678 leinfelder
						// search
118 5688 leinfelder
						$("#" + divId).jstree("search", searchTerm);
119 5663 leinfelder
						// now prune
120 5664 leinfelder
						prune(divId, "jstree-search");
121 5688 leinfelder
						// is it an exact match?
122
						checkExactMatch(divId, searchTerm, "jstree-search");
123 5658 leinfelder
					}
124
				});
125 5664 leinfelder
126
			// toggle the active domain prune
127 5668 leinfelder
			$("#" + divId + "Only").click(function() {
128
				doActiveDomain(divId);
129
			});
130 5658 leinfelder
131 5668 leinfelder
			// actually prune if we should
132
			doActiveDomain(divId);
133 5687 leinfelder
134
			// open first node always
135
			$("#" + divId).jstree("open_node", $("#" + divId).children("ul").first().children("li").first());
136 5668 leinfelder
137
			// open to the node to last selected
138 5667 leinfelder
			var nodePath = $("#" + divId).jstree("get_path", $(selectedNode));
139
			if (nodePath) {
140
				for (var index = 0; index < nodePath.length; index++) {
141
					$("#" + divId).jstree("open_node", $("#" + nodePath[index]));
142
				}
143
				// select the original node
144
				$("#" + divId).jstree("select_node", $(selectedNode), false);
145
				$("#" + divId).jstree("refresh", $(selectedNode));
146
				// TODO: scroll to selected node.
147
				// This is supposed to be part of jsTree 1.0-rc2 but appears to be broken
148
			}
149
150 5656 leinfelder
		});
151 5633 leinfelder
}
152 5664 leinfelder
/**
153
* Prunes the given tree to inlcude the given matched class
154
**/
155
function prune(divId, matchClass) {
156 5663 leinfelder
157
	// show all nodes (reset)
158
	$("#" + divId).find("li").show();
159
160 5664 leinfelder
	// done if we don't have any thing to prune
161
	if (!matchClass) {
162
		return;
163
	}
164
165 5663 leinfelder
	// get all non-matched anchor tags
166 5664 leinfelder
	var nonmatches = $("#" + divId).find("a").not("." + matchClass);
167 5663 leinfelder
168
	// get their parent nodes
169
	nonmatches = $(nonmatches).parents("li");
170
171
	// are there any matches under each parent node?
172
	$(nonmatches).each(
173
		function(index) {
174
			// do any chidren match?
175 5664 leinfelder
			var childMatches = $(this).find("a." + matchClass);
176 5663 leinfelder
			if (childMatches && childMatches.length > 0) {
177
				return true;
178
			}
179
			// parent matches?
180 5664 leinfelder
			var parentMatches = $(this).parents("li").children("a." + matchClass);
181 5663 leinfelder
			if (parentMatches && parentMatches.length > 0) {
182
				return true;
183
			}
184
			// hide this node if no matches under it
185
			$(this).hide();
186
		});
187
}
188 5688 leinfelder
function checkExactMatch(divId, searchTerm, matchClass) {
189
	// get the current search matches
190
	var matches = $("#" + divId).find("a." + matchClass);
191
	// get their parent nodes
192
	matches = $(matches).parents("li");
193
	// check for exact matches
194
	var exactMatch = $(matches).filter("#" + searchTerm).first();
195
	if (exactMatch && exactMatch.length == 1) {
196
		//alert("exactMatch: " + exactMatch);
197 5689 leinfelder
		// select in the tree, honoring the configured selection limit
198
		$("#" + divId).jstree("select_node", $(exactMatch), true);
199
		// act as those you clicked it
200
		// TODO: convert to event listeners on the tree
201 5688 leinfelder
		select($(exactMatch).children("a"));
202
	}
203
}
204 5668 leinfelder
function doActiveDomain(divId) {
205
	if ($("#" + divId + "Only").is(":checked")) {
206
		// prune to active
207
		prune(divId, "bold");
208
	} else {
209
		// reset
210
		prune(divId, null);
211
	}
212
}
213 5633 leinfelder
function initialize(source) {
214 5656 leinfelder
	// we don't want to reload the source of the filtering request
215
	// but we do want to reload the other trees for active domains
216
	// we reload all of them if no source is given - first time the page loads
217 5633 leinfelder
	if (source) {
218 5656 leinfelder
		source = $(source).attr("id");
219 5633 leinfelder
	}
220
	if (!source) {
221
		source = "";
222
	}
223
	if (source != 'activeEntities') {
224
		populateActiveDomain('activeEntities', 'org.ecoinformatics.sms.annotation.Entity');
225
	}
226
	if (source != 'activeCharacteristics') {
227
		populateActiveDomain('activeCharacteristics', 'org.ecoinformatics.sms.annotation.Characteristic');
228
	}
229
	if (source != 'activeProtocols') {
230
		populateActiveDomain('activeProtocols', 'org.ecoinformatics.sms.annotation.Protocol');
231
	}
232
	if (source != 'activeMeasurements') {
233
		populateActiveDomain('activeMeasurements', 'org.ecoinformatics.sms.annotation.Measurement');
234
	}
235
}
236 5656 leinfelder
function select(item) {
237 5633 leinfelder
238 5656 leinfelder
	// get the selected value, stored in the title attribute of the item <a> tag
239
	var value = $(item).attr("title");
240
	//alert("value: " + value);
241
242
	// get the parent div so we know what kind of class it is meant to filter
243
	// this is "the first parent of the class 'select'"
244
	var parent = $(item).parents("div.select:first");
245
	//alert("parent: " + parent);
246
247
	// set the value for the hidden input value
248 5774 leinfelder
	// the input field of class "conceptValue" will hold it, this way we don't need to know the id
249
	var input = $(parent).children("input.conceptValue");
250 5656 leinfelder
	$(input).val(value);
251
	//alert("input: " + input);
252 5662 leinfelder
253
	// set it in the search field
254
	var treeInstance = $(item).parents("div.jstree:first");
255
	var shortName = $(item).parent().attr("id");
256
	$("#" + $(treeInstance).attr("id") + "Search").val(shortName)
257 5656 leinfelder
258 5665 leinfelder
	// refresh the search results
259
	doSearch($("#searchForm").get(0));
260
261 5656 leinfelder
	// refresh the other trees for active domain after this filtering action
262 5666 leinfelder
	initialize($(parent).children("div"));
263 5656 leinfelder
}
264 5665 leinfelder
function doSearch(formObj) {
265
	// set the hidden parameters based on the current state of the form
266
	checkSearch(formObj);
267
268 5678 leinfelder
	// start the busy indicator
269 5684 leinfelder
	$("#searchResults").busy(
270
			{
271
				position	: 'left',
272
				offset		: -30,
273
				hide		: true,
274 5703 leinfelder
				img			: "<%=STYLE_COMMON_URL%>/jquery/busy/busy.gif"
275 5684 leinfelder
			});
276 5678 leinfelder
277 5665 leinfelder
	//load the results
278
	$("#searchResults").load(
279
		"<%=SERVLET_URL%>" + " #content_wrapper",
280
		$(formObj).serialize(),
281
		// call back function when loading finishes
282
		function(response, status, xhr) {
283
			if (status == "error") {
284
				var msg = "Sorry but there was an error performing the search: ";
285
				$("#error").html(msg + xhr.status + " " + xhr.statusText);
286
			}
287 5762 leinfelder
			// collapsible search results - show and hide the next div
288 5675 leinfelder
			$(function() {
289
				$('.accordian').click(function() {
290 5765 leinfelder
					var ref = $(this);
291
					$(this).parent().next().slideToggle(
292
						"slow",
293
						function() {
294
							if ($(ref).parent().next().is(":visible")) {
295
								$(ref).html("-");
296
							} else {
297
								$(ref).html("+");
298
							}
299
						});
300 5675 leinfelder
					return false;
301 5762 leinfelder
				}).parent().next().hide();
302 5675 leinfelder
			});
303
304 5678 leinfelder
			// stop the busy indicator
305
			$("#searchResults").busy("hide");
306 5665 leinfelder
		});
307
308
	return false;
309
310
}
311 5668 leinfelder
function clearForm() {
312
	// clear the form values
313
	$('#searchForm').get(0).reset();
314
	// clear each of the tree selections
315
	$(".jstree").each(function(index) {
316
		$(this).jstree("deselect_all");
317
	});
318 5774 leinfelder
	$("input.conceptValue").each(function(index) {
319 5668 leinfelder
		$(this).val("");
320
	});
321
	// reload the trees
322
	initialize();
323
	// reload the search results
324
	//alert($('#searchForm').get(0));
325
	doSearch($('#searchForm').get(0));
326
}
327 5774 leinfelder
function addCurrent() {
328
329
	// make a container for this item
330
	var count = $("#searchCriteria").children(".searchItem").length;
331
	count++;
332
	var containerId = "searchItem_" + count;
333
	var container = "<div class='searchItem' id='" + containerId + "'/>";
334
	$("#searchCriteria").append(container);
335
336
	// get the current values
337
	$("input.conceptValue").each(function(index) {
338
		var title = $(this).attr("title");
339
		var value = $(this).val();
340
		var shortName = value.substr(value.lastIndexOf("#") + 1);
341
		var clone = $(this).clone();
342
		$(clone).removeClass("conceptValue");
343
		// put the value in the container
344
		$("#" + containerId).append(clone);
345
		$("#" + containerId).append("[" + title + " = " + shortName + "] ");
346
	});
347
	// get the current classes (for search to work correctly we need class+value for each entry)
348
	$("input.conceptClass").each(function(index) {
349
		var clone = $(this).clone();
350
		$(clone).removeClass("conceptClass");
351
		// put the class in the container
352
		$("#" + containerId).append(clone);
353
	});
354
355
	// add the remove button
356
	$("#" + containerId).append("<input type='button' value='Remove'/>").click(function() {
357
		// remove the container (includes the form objects we added)
358
		$("#" + containerId).remove();
359
		// refresh the search results now that they are less restrictive
360
		doSearch($("#searchForm").get(0));
361
	});
362
}
363 5685 leinfelder
/**
364
 * Perform this when the page first loads
365
 */
366
function pageLoad() {
367
	initialize();
368
	doSearch($('#searchForm').get(0));
369
}
370 5656 leinfelder
function donothing() {}
371
--></script>
372
373 5385 leinfelder
</head>
374 5685 leinfelder
<body onload="pageLoad()">
375 5509 leinfelder
<script language="javascript">
376
	insertTemplateOpening("<%=CONTEXT_URL%>");
377
</script>
378 5385 leinfelder
379 5574 leinfelder
<div id="content_wrapper">
380 5669 leinfelder
381 5690 leinfelder
<h2>Semantic search</h2>
382 5385 leinfelder
383 5633 leinfelder
<div id="error">
384
	<!-- error messages here -->
385
</div>
386
387 5669 leinfelder
<!-- set up the tabs -->
388
<script>
389
	$(function() {
390
		$("#searchTabs").tabs();
391
		$("#searchTabs").tabs("add", "#ecpTab", "Entity, Characteristic, Protocol");
392
		$("#searchTabs").tabs("add", "#measurementTab", "Measurement");
393 5672 leinfelder
		$("#searchTabs").tabs("add", "#optionsTab", "Options");
394 5669 leinfelder
	});
395
</script>
396
397 5665 leinfelder
<form method="POST"
398
		action="<%=SERVLET_URL%>"
399
		target="_top"
400
		id="searchForm"
401
		name="searchForm"
402
		onSubmit="return doSearch(this)">
403 5509 leinfelder
	<input name="query" type="hidden" />
404
	<input name="qformat" value="semtools" type="hidden" />
405 5665 leinfelder
	<input name="includeHeader" value="false" type="hidden" />
406 5533 leinfelder
	<input name="action" value="semquery" type="hidden" />
407 5509 leinfelder
408 5672 leinfelder
	<!-- tabs for the search interface -->
409
	<div id="searchTabs">
410
		<!-- place holder for ui tabs -->
411
		<ul></ul>
412
413
		<!-- other criteria tabs -->
414
		<div id="ecpTab">
415
			<table>
416
				<tr>
417
					<td>
418
						<table class="subGroup subGroup_border">
419
420 5669 leinfelder
							<tr>
421 5672 leinfelder
								<th><p>Find observations of</p></th>
422
							</tr>
423
							<tr>
424 5669 leinfelder
								<td>
425 5672 leinfelder
									<input type="text" id="activeEntitiesSearch" />
426
									<input type="checkbox" id="activeEntitiesOnly" title="Show only active concepts" />
427
									<div class="select">
428
										<div id="activeEntities" class="activeTree">
429
											<p>loading...</p>
430
										</div>
431 5774 leinfelder
										<input type="hidden" class="conceptValue" name="activeEntitiesValue" id="activeEntitiesValue" title="Entity"/>
432
										<input type="hidden" class="conceptClass" name="activeEntitiesClass" id="activeEntitiesClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Entity"/>
433 5672 leinfelder
									</div>
434 5669 leinfelder
								</td>
435 5672 leinfelder
							</tr>
436
						</table>
437
					</td>
438
					<td>
439
						<table class="subGroup subGroup_border">
440
							<tr>
441
								<th><p>with measurements of</p></th>
442
							</tr>
443
							<tr>
444 5669 leinfelder
								<td>
445 5672 leinfelder
									<input type="text" id="activeCharacteristicsSearch" />
446
									<input type="checkbox" id="activeCharacteristicsOnly" title="Show only active concepts" />
447
									<div class="select">
448
										<div id="activeCharacteristics" class="activeTree">
449
											<p>loading...</p>
450
										</div>
451 5774 leinfelder
										<input type="hidden" class="conceptValue" name="activeCharacteristicsValue" id="activeCharacteristicsValue" title="Characteristic"/>
452
										<input type="hidden" class="conceptClass" name="activeCharacteristicsClass" id="activeCharacteristicsClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Characteristic"/>
453 5672 leinfelder
									</div>
454 5669 leinfelder
								</td>
455
							</tr>
456
						</table>
457 5672 leinfelder
					</td>
458
					<td>
459
						<table class="subGroup subGroup_border">
460 5669 leinfelder
							<tr>
461 5672 leinfelder
								<th><p>using procedures outlined by</p></th>
462 5669 leinfelder
							</tr>
463
							<tr>
464
								<td>
465 5672 leinfelder
									<input type="text" id="activeProtocolsSearch" />
466
									<input type="checkbox" id="activeProtocolsOnly" title="Show only active concepts" />
467 5669 leinfelder
									<div class="select">
468 5672 leinfelder
										<div id="activeProtocols" class="activeTree">
469 5669 leinfelder
											<p>loading...</p>
470
										</div>
471 5774 leinfelder
										<input type="hidden" class="conceptValue" name="activeProtocolsValue" id="activeProtocolsValue" title="Protocol"/>
472
										<input type="hidden" class="conceptClass" name="activeProtocolsClass" id="activeProtocolsClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Protocol"/>
473 5669 leinfelder
									</div>
474
								</td>
475
							</tr>
476
						</table>
477 5672 leinfelder
					</td>
478
				</tr>
479
			</table>
480
		</div>
481
482
		<!-- measurement -->
483
		<div id="measurementTab">
484
			<table class="subGroup subGroup_border onehundred_percent">
485 5669 leinfelder
486 5672 leinfelder
				<tr>
487
					<th><p>a template that defines Entity, Characteristic, Standard, and/or Protocol</p></th>
488
				</tr>
489
490
				<tr>
491
					<td>
492
						<input type="text" id="activeMeasurementsSearch" />
493
						Only active? <input type="checkbox" id="activeMeasurementsOnly" title="Show only active concepts"/>
494
						<div class="select">
495
							<div id="activeMeasurements" class="activeTree" style="width: 100%">
496
								<p>loading...</p>
497
							</div>
498 5774 leinfelder
							<input type="hidden" class="conceptValue" name="activeMeasurementsValue" id="activeMeasurementsValue" title="Measurement"/>
499
							<input type="hidden" class="conceptClass" name="activeMeasurementsClass" id="activeMeasurementsClass" value="http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#Measurement"/>
500 5672 leinfelder
						</div>
501
					</td>
502
				</tr>
503
			</table>
504
		</div>
505 5669 leinfelder
506 5672 leinfelder
		<!-- query options -->
507
		<div id="optionsTab">
508
			<table class="group group_border">
509
				<tr>
510
					<th colspan="2">
511
						<p>
512
							Locate <b>data packages</b> that have been semantically annotated within the observation model by
513
							selecting concepts from OBOE extension ontologies
514
						</p>
515
					</th>
516
				</tr>
517
518
				<tr>
519
520
					<td colspan="1">Match All? <input type="checkbox" name="matchAll" checked="checked"/></td>
521
522
					<td colspan="1">From same Observation? <input type="checkbox" name="strict"/></td>
523
				</tr>
524
525
			</table>
526
		</div>
527
528
	</div>
529 5774 leinfelder
530
	<br/>
531
532
	<!-- collected search criteria here -->
533
	<table class="subGroup subGroup_border onehundred_percent">
534
		<tr>
535
			<th>
536
				Search Criteria
537
				<input type="button" value="Add Current Selection" onclick="addCurrent()"/>
538
			</th>
539
		</tr>
540
		<tr>
541
			<td>
542
				<div id="searchCriteria">
543
				</div>
544
			</td>
545
		</tr>
546
	</table>
547 5672 leinfelder
548
	<br/>
549
550
	<!-- search results here -->
551
	<table class="subGroup subGroup_border onehundred_percent">
552 5632 leinfelder
		<tr>
553 5672 leinfelder
			<th>
554
				Search Results
555 5668 leinfelder
				<input type="reset" value="Clear" onclick="clearForm()"/>
556 5672 leinfelder
			</th>
557 5509 leinfelder
		</tr>
558
		<tr>
559 5672 leinfelder
			<td>
560
				<div id="searchResults">
561
				No query has been specified
562
				</div>
563
			</td>
564 5509 leinfelder
		</tr>
565 5672 leinfelder
	</table>
566
567 5509 leinfelder
</form>
568
569 5665 leinfelder
570 5672 leinfelder
571 5509 leinfelder
<!-- Included default search/login -->
572
<% if ( PropertyService.getProperty("spatial.runSpatialOption").equals("true") ) { %>
573
<script language="javascript">
574
	insertMap("<%=CONTEXT_URL%>");
575
</script>
576
<br/>
577
<% } %>
578
579
<script language="javascript">
580
	insertSearchBox("<%=CONTEXT_URL%>");
581
	insertLoginBox("<%=CONTEXT_URL%>");
582
</script>
583
584 5574 leinfelder
</div>
585
586 5509 leinfelder
<script language="javascript">
587
	insertTemplateClosing("<%=CONTEXT_URL%>");
588
</script>
589
590 5385 leinfelder
</body>
591
</html>