-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-both-1site.aspx
128 lines (117 loc) · 7.22 KB
/
run-both-1site.aspx
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="run-both-1site.aspx.cs" Inherits="run_both_1site_code" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>The Forest Sector Carbon Calculator</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Keywords" content="forest, forest management, carbon calculator, forest products, forest sector, wildfire, disturbance regime" />
<link href="css/carbon.css" type="text/css" rel="stylesheet" />
<link href="css/sb_minitabs.css" type="text/css" rel="stylesheet" />
<link href="css/csshorizontalmenu.css" type="text/css" rel="stylesheet" />
<script src="css/csshorizontalmenu.js" type="text/javascript"></script>
<script src="css/script_carbon.js" type="text/javascript" language="javascript"></script>
<!-- <script src="css/script_step1.js" type="text/javascript" language="javascript"></script> -->
</head>
<body onunload="setHourglass()">
<div id="mainPageDiv">
<script type="text/javascript">loadNavMenu();</script>
<noscript><br /><h1 style="text-align:center;">The Forest Sector Carbon Calculator</h1>
<h1 style="text-align:center; color:Red;">Please Enable Javascript Before Proceeding</h1></noscript>
<div class="container">
<ul class="minitabs">
<li><a href="javascript:writeNavURL('<%=HttpContext.Current.Session["scale"]%>', 1)" class="active">1. Site Selection</a></li>
<li><a href="javascript:writeNavURL('<%=HttpContext.Current.Session["scale"]%>', 2)">2. Simulation Characteristics</a></li>
<li><a href="javascript:writeNavURL('<%=HttpContext.Current.Session["scale"]%>', 3)">3. Disturbance History</a></li>
<li><a href="javascript:writeNavURL('<%=HttpContext.Current.Session["scale"]%>', 4)">4. Future Land-use Management</a></li>
<li><a href="javascript:writeNavURL('<%=HttpContext.Current.Session["scale"]%>', 5)">5. Carbon Use</a></li>
</ul>
</div>
<div id="mainPageTitle" style="margin-left:20px">
<span><a href="javascript:insertContent('stepNotes', 'notesView', 'notesHide')" id="notesView">
View</a><a href="javascript:removeContent('stepNotes', 'notesView', 'notesHide')" id="notesHide" style="display: none;">
Hide</a> notes for this step </span>Site Selection -
<script type="text/javascript">formatScaleName('<%=HttpContext.Current.Session["scale"]%>')</script>
</div>
<div id="main">
<div id="stepNotes" style="display:none">Please select the region, ownership, and elevation interval for the site
that you wish to examine. Elevation intervals are equal. A drop down list will help you make a selection. This
helps to determine which species, climate, soils, and land-use history the model
should use for your simulations. See the map for supported regions.</div>
<div id="inputForm">
<form id="step1input" runat="server" method="post" defaultbutton="btn1next">
<!-- <img src="images/ecoregion_map.jpg" height="400px" align="right" border="1" style="margin-bottom: 20px" alt="Available Ecoregions" /> -->
<asp:ImageMap ID="ImageMap_ecoregions" runat="server"
ImageUrl="images/ecoregion_map.jpg" BorderStyle="Solid" BorderWidth="1"
Height="400px" ImageAlign="Right" HotSpotMode="PostBack"
onclick="ImageMap_ecoregions_Click" CssClass="imageBottomMargin">
<asp:PolygonHotSpot AlternateText="Western Cascades"
Coordinates="82,302,72,264,76,213,118,147,142,122,167,121,129,214,101,286"
HotSpotMode="PostBack" PostBackValue="westCasc" />
<asp:PolygonHotSpot AlternateText="Eastern Cascades"
Coordinates="170,325,84,303,102,286,133,211,168,120,181,129,149,197,169,237,149,244,175,302"
HotSpotMode="PostBack" PostBackValue="eastCasc" />
</asp:ImageMap>
<table width="50%" cellspacing="10">
<tr>
<td width="300px">
Select region to run
<asp:RequiredFieldValidator
ID="valReq_region" runat="server" ControlToValidate="ddl_region"
ErrorMessage="Please select a region from the list" ValidationGroup="AllValidators"
SetFocusOnError="True" InitialValue="selectRegion">*</asp:RequiredFieldValidator>
</td>
<td>
<asp:DropDownList ID="ddl_region" runat="server"
AutoPostBack="True">
</asp:DropDownList>
</td>
</tr>
<tr>
<td width="300px">
Select principle ownership
<asp:RequiredFieldValidator
ID="valReq_ownership" runat="server" ControlToValidate="ddl_ownership"
ErrorMessage="Please select an ownership from the list" ValidationGroup="AllValidators"
SetFocusOnError="True" InitialValue="selectOwnership">*</asp:RequiredFieldValidator>
<a href="#" onclick="helpOwnership()"><asp:Image
ID="img_help_ownership" runat="server" ImageUrl="~/images/help-about-icon.png"
AlternateText="help" /></a>
</td>
<td>
<asp:DropDownList ID="ddl_ownership" runat="server"
AutoPostBack="True">
</asp:DropDownList>
</td>
</tr>
<tr>
<td width="300px">
Select elevation class
<asp:RequiredFieldValidator
ID="valReq_elevation" runat="server" ControlToValidate="ddl_elevation"
ErrorMessage="Please select an elevation class from the list" ValidationGroup="AllValidators"
SetFocusOnError="True" InitialValue="selectElevation">*</asp:RequiredFieldValidator>
<a href="#" onclick="helpElevationClass()"><asp:Image ID="img_help_elevationClass" runat="server" ImageUrl="~/images/help-about-icon.png" AlternateText="help" /></a>
</td>
<td>
<asp:DropDownList ID="ddl_elevation" runat="server"
AutoPostBack="True">
</asp:DropDownList>
</td>
</tr>
</table>
<asp:ValidationSummary ID="ValidationSummary1" runat="server" ShowMessageBox="True"
ValidationGroup="AllValidators" ShowSummary="False" />
<br />
<asp:Button ID="btn1Previous" class="formButton" runat="server" onclick="btn1Previous_Click"
Text="Previous" TabIndex="1" />
<asp:Button ID="btn1Next" class="formButton" runat="server" Text="Next"
OnClick="btn1Next_Click" TabIndex="0"
ValidationGroup="AllValidators" />
</form>
</div>
</div>
<script type= "text/javascript">loadFooter();</script>
</div>
</body>
</html>