Project

General

Profile

1
<%@ page language="java"%>
2
<%
3
	 /*
4
	 '$RCSfile$'
5
	 Copyright: 2003 Regents of the University of California and the
6
	 National Center for Ecological Analysis and Synthesis
7
	 '$Author: leinfelder $'
8
	 '$Date: 2008-06-10 10:18:06 -0700 (Tue, 10 Jun 2008) $'
9
	 '$Revision: 3966 $'
10
	
11
	 This program is free software; you can redistribute it and/or modify
12
	 it under the terms of the GNU General Public License as published by
13
	 the Free Software Foundation; either version 2 of the License, or
14
	 (at your option) any later version.
15
	
16
	 This program is distributed in the hope that it will be useful,
17
	 but WITHOUT ANY WARRANTY; without even the implied warranty of
18
	 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
	 GNU General Public License for more details.
20
	
21
	 You should have received a copy of the GNU General Public License
22
	 along with this program; if not, write to the Free Software
23
	 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24
	 */
25
%>
26
<%@ include file="settings.jsp"%>
27
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
28
<html>
29
<head>
30
	<title>SANParks - South African National Park Data Repository</title>
31
	<!-- This file is meant to be included in a parent file, so link css stylesheet there. -->
32
</head>
33

    
34
<body>
35
<table cellpadding="0" cellspacing="0" border="1" class="header-section">
36
	<tr>
37
		<td>
38
			<a href="http://www.SANParks.org/" title="SANParks.org Home"><img src="<%=STYLE_SKINS_URL%>/sanparks/images/logofade_top.jpg" alt="SANParks.org Home" /></a>
39
		</td>	
40
		<td class="header-title">
41
			<div>SANParks<br>
42
				South African National Park Data Repository </div>
43
		</td>
44
		<td>
45
			<img src="<%=STYLE_SKINS_URL%>/sanparks/images/giraffe_top_left.jpg" alt="SANParks.org Home" />
46
		</td>
47
		<td>
48
			<img src="<%=STYLE_SKINS_URL%>/sanparks/images/giraffe_top_right.jpg" alt="SANParks.org Home" />
49
		</td>
50
	</tr>
51
	<tr>
52
		<td>
53
			<a href="http://www.SANParks.org/" title="SANParks.org Home"><img src="<%=STYLE_SKINS_URL%>/sanparks/images/logofade_bottom.jpg" alt="SANParks.org Home" /></a>
54
		</td>
55
		<td colspan="2" class="header-menu">
56
			<a  class="header-menu-first-item" href="./" target="_top" >Repository Home</a>
57
			<a  class="header-menu-item" href="<%=CGI_URL%>/register-dataset.cgi?cfg=sanparks" target="_top" >Register Data</a>
58

    
59
<%
60
			if(request.getRequestURI().endsWith("searchWorkflowRun.jsp")) {
61
%>
62
				<span class="header-menu-item">TPC Status</span>	
63
<%
64
			} else {
65
%>
66
				<a class="header-menu-item" href="<%=STYLE_SKINS_URL%>/sanparks/searchWorkflowRun.jsp">TPC Status</a>
67
<%
68
			}
69

    
70
 
71
			if(request.getRequestURI().endsWith("searchWorkflow.jsp")) {
72
%>
73
				<span class="header-menu-item">TPC Workflows</span>	
74
<%
75
			} else {
76
%>
77
				<a class="header-menu-item" href="<%=STYLE_SKINS_URL%>/sanparks/searchWorkflow.jsp">TPC Workflows</a>
78
<%
79
			}
80
%> 
81
					
82
		</td>
83
		<td>
84
			<img src='<%=STYLE_SKINS_URL%>/sanparks/images/giraffe_bottom_right.jpg' alt='Giraffe' />
85
		</td>
86
	</tr>
87
</table>
88
</body>
89
</html>
(11-11/39)