1
|
[% INCLUDE "genericHeader.tmpl" %]
|
2
|
|
3
|
<script language="JavaScript" type="text/javascript">
|
4
|
function addParagraph() {
|
5
|
var newParaWidget=document.createElement("textarea");
|
6
|
newParaWidget.setAttribute("rows", "5");
|
7
|
newParaWidget.setAttribute("columns", "80");
|
8
|
newParaWidget.setAttribute("name", "methodPara");
|
9
|
var newParaContainer = document.createElement("p");
|
10
|
newParaContainer.appendChild(newParaWidget);
|
11
|
var addParaButton = document.getElementById("addparabutton1");
|
12
|
var parent = addParaButton.parentNode;
|
13
|
parent.insertBefore(newParaContainer, addParaButton);
|
14
|
}
|
15
|
|
16
|
function addTaxon() {
|
17
|
var taxaCountField = document.getElementById("taxaCount");
|
18
|
var taxaCount = taxaCountField.getAttribute("value");
|
19
|
taxaCount++;
|
20
|
taxaCountField.setAttribute("value", taxaCount);
|
21
|
var taxonRow = createTaxonRow(taxaCount);
|
22
|
var taxonRowMarker = document.getElementById("addtaxarow");
|
23
|
var parent = taxonRowMarker.parentNode;
|
24
|
parent.insertBefore(taxonRow, taxonRowMarker);
|
25
|
}
|
26
|
|
27
|
function createTaxonRow(taxaCount) {
|
28
|
var rankField=createTextField("taxonRankName" + taxaCount, "25");
|
29
|
var rankCell = document.createElement("td");
|
30
|
rankCell.appendChild(rankField);
|
31
|
var taxonField=createTextField("taxonRankValue" + taxaCount, "25");
|
32
|
var taxonCell = document.createElement("td");
|
33
|
taxonCell.appendChild(taxonField);
|
34
|
var taxonRow = document.createElement("tr");
|
35
|
taxonRow.appendChild(rankCell);
|
36
|
taxonRow.appendChild(taxonCell);
|
37
|
|
38
|
return taxonRow;
|
39
|
}
|
40
|
|
41
|
function createTextField(name, size) {
|
42
|
var newField=document.createElement("input");
|
43
|
newField.setAttribute("type", "text");
|
44
|
newField.setAttribute("name", name);
|
45
|
newField.setAttribute("size", size);
|
46
|
|
47
|
return newField;
|
48
|
}
|
49
|
|
50
|
function addKeyword() {
|
51
|
var keyCountField = document.getElementById("keyCount");
|
52
|
var keyCount = keyCountField.getAttribute("value");
|
53
|
keyCount++;
|
54
|
keyCountField.setAttribute("value", keyCount);
|
55
|
var keyRow = createKeywordRow(keyCount);
|
56
|
var keyRowMarker = document.getElementById("addkeyrow");
|
57
|
var parent = keyRowMarker.parentNode;
|
58
|
parent.insertBefore(keyRow, keyRowMarker);
|
59
|
}
|
60
|
|
61
|
function createKeywordRow(keyCount) {
|
62
|
var nameField=createTextField("keyword" + keyCount, "40");
|
63
|
var nameCell = document.createElement("td");
|
64
|
nameCell.appendChild(nameField);
|
65
|
|
66
|
var keyTypeField=createKeyTypeSelect("kwType" + keyCount);
|
67
|
var keyTypeCell = document.createElement("td");
|
68
|
keyTypeCell.appendChild(keyTypeField);
|
69
|
|
70
|
var keyThField=createKeyThSelect("kwTh" + keyCount);
|
71
|
var keyThCell = document.createElement("td");
|
72
|
keyThCell.appendChild(keyThField);
|
73
|
|
74
|
var keyRow = document.createElement("tr");
|
75
|
keyRow.appendChild(nameCell);
|
76
|
keyRow.appendChild(keyTypeCell);
|
77
|
keyRow.appendChild(keyThCell);
|
78
|
|
79
|
return keyRow;
|
80
|
}
|
81
|
|
82
|
function createKeyTypeSelect(name) {
|
83
|
var newField=document.createElement("select");
|
84
|
newField.setAttribute("name", name);
|
85
|
var option1=document.createElement("option");
|
86
|
var text1=document.createTextNode("none");
|
87
|
option1.appendChild(text1);
|
88
|
newField.appendChild(option1);
|
89
|
var option2=document.createElement("option");
|
90
|
var text2=document.createTextNode("theme");
|
91
|
option2.appendChild(text2);
|
92
|
newField.appendChild(option2);
|
93
|
var option3=document.createElement("option");
|
94
|
var text3=document.createTextNode("place");
|
95
|
option3.appendChild(text3);
|
96
|
newField.appendChild(option3)
|
97
|
var option4=document.createElement("option");
|
98
|
var text4=document.createTextNode("stratum");
|
99
|
option4.appendChild(text4);
|
100
|
newField.appendChild(option4);
|
101
|
var option5=document.createElement("option");
|
102
|
var text5=document.createTextNode("temporal");
|
103
|
option5.appendChild(text5);
|
104
|
newField.appendChild(option5);
|
105
|
var option6=document.createElement("option");
|
106
|
var text6=document.createTextNode("taxonomic");
|
107
|
option6.appendChild(text6);
|
108
|
newField.appendChild(option6);
|
109
|
|
110
|
return newField;
|
111
|
}
|
112
|
|
113
|
function createKeyThSelect(name) {
|
114
|
var newField=document.createElement("select");
|
115
|
newField.setAttribute("name", name);
|
116
|
var option1=document.createElement("option");
|
117
|
var text1=document.createTextNode("none");
|
118
|
option1.appendChild(text1);
|
119
|
newField.appendChild(option1);
|
120
|
var option2=document.createElement("option");
|
121
|
var text2=document.createTextNode("GCMD");
|
122
|
option2.appendChild(text2);
|
123
|
newField.appendChild(option2);
|
124
|
|
125
|
return newField;
|
126
|
}
|
127
|
|
128
|
|
129
|
function copyContact(){
|
130
|
var checkBox = document.getElementById("copyCheckBox");
|
131
|
if(checkBox.checked == true)
|
132
|
{
|
133
|
var cnf=document.getElementById("contactNameFirst");
|
134
|
var onf=document.getElementById("origNameFirst");
|
135
|
cnf.value = onf.value;
|
136
|
|
137
|
var cnl=document.getElementById("contactNameLast");
|
138
|
var onl=document.getElementById("origNameLast");
|
139
|
cnl.value = onl.value;
|
140
|
|
141
|
var cno=document.getElementById("contactNameOrg");
|
142
|
var ono=document.getElementById("origNameOrg");
|
143
|
cno.value = ono.value;
|
144
|
|
145
|
var ce=document.getElementById("contactEmail");
|
146
|
var oe=document.getElementById("origEmail");
|
147
|
ce.value = oe.value;
|
148
|
|
149
|
var cp=document.getElementById("contactPhone");
|
150
|
var op=document.getElementById("origPhone");
|
151
|
cp.value = op.value;
|
152
|
|
153
|
var cf=document.getElementById("contactFAX");
|
154
|
var of=document.getElementById("origFAX");
|
155
|
cf.value = of.value;
|
156
|
|
157
|
var cd=document.getElementById("contactDelivery");
|
158
|
var od=document.getElementById("origDelivery");
|
159
|
cd.value = od.value;
|
160
|
|
161
|
var cc=document.getElementById("contactCity");
|
162
|
var oc=document.getElementById("origCity");
|
163
|
cc.value = oc.value;
|
164
|
|
165
|
var cs=document.getElementById("contactState");
|
166
|
var os=document.getElementById("origState");
|
167
|
|
168
|
var cso=document.getElementById("contactStateOther");
|
169
|
var oso=document.getElementById("origStateOther");
|
170
|
cso.value = oso.value;
|
171
|
|
172
|
var cz=document.getElementById("contactZip");
|
173
|
var oz=document.getElementById("origZip");
|
174
|
cz.value = oz.value;
|
175
|
|
176
|
var cC=document.getElementById("contactCountry");
|
177
|
var oC=document.getElementById("origCountry");
|
178
|
cC.value = oC.value;
|
179
|
|
180
|
} else {
|
181
|
var cnf=document.getElementById("contactNameFirst");
|
182
|
cnf.value = "";
|
183
|
|
184
|
var cnl=document.getElementById("contactNameLast");
|
185
|
cnl.value = "";
|
186
|
|
187
|
var cno=document.getElementById("contactNameOrg");
|
188
|
cno.value = "";
|
189
|
|
190
|
var ce=document.getElementById("contactEmail");
|
191
|
ce.value = "";
|
192
|
|
193
|
var cp=document.getElementById("contactPhone");
|
194
|
cp.value = "";
|
195
|
|
196
|
var cf=document.getElementById("contactFAX");
|
197
|
cf.value = "";
|
198
|
|
199
|
var cd=document.getElementById("contactDelivery");
|
200
|
cd.value = "";
|
201
|
|
202
|
var cc=document.getElementById("contactCity");
|
203
|
cc.value = "";
|
204
|
|
205
|
var cso=document.getElementById("contactStateOther");
|
206
|
cso.value = "";
|
207
|
|
208
|
var cz=document.getElementById("contactZip");
|
209
|
cz.value = "";
|
210
|
|
211
|
var cC=document.getElementById("contactCountry");
|
212
|
cC.value = "";
|
213
|
}
|
214
|
}
|
215
|
|
216
|
</script>
|
217
|
|
218
|
[% IF cfg == 'nrs' %]
|
219
|
[% lsite = 'reserve' %]
|
220
|
[% usite = 'Reserve' %]
|
221
|
[% showSiteList = 'true' %]
|
222
|
[% ELSIF cfg == 'obfs' %]
|
223
|
[% lsite = 'station' %]
|
224
|
[% usite = 'Station' %]
|
225
|
[% showSiteList = 'true' %]
|
226
|
[% ELSIF cfg == 'nceas' %]
|
227
|
[% lsite = 'station' %]
|
228
|
[% usite = 'Station' %]
|
229
|
[% showSiteList = 'false' %]
|
230
|
[% ELSE %]
|
231
|
[% lsite = 'station' %]
|
232
|
[% usite = 'Station' %]
|
233
|
[% showSiteList = 'false' %]
|
234
|
[% END %]
|
235
|
|
236
|
[% IF form != 're_entry' %]
|
237
|
<p>Use this page to submit a <b>new</b> data set description for
|
238
|
inclusion in the registry.</p>
|
239
|
<p> </p>
|
240
|
<p>Please have a look at the
|
241
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide" target="guide">
|
242
|
<b>Guide on How to Complete Data Registry Entries</b></a>
|
243
|
before you start filling in this catalog form. Also, use your browser's
|
244
|
Reload/Refresh function to make sure you see the latest version of this
|
245
|
page.
|
246
|
</p>
|
247
|
<p> </p>
|
248
|
<p align="left">Fields including a red asterisk
|
249
|
(<span class="required">*</span>) are required.
|
250
|
</p>
|
251
|
<p> </p>
|
252
|
<p align="left">If you have any questions, comments or problems
|
253
|
regarding this form, please contact [% adminname %] at
|
254
|
<a href="mailto:[% recipient %]"><i>[% recipient %]</i></a>.
|
255
|
</p>
|
256
|
[% ELSE %]
|
257
|
<p>Use this page to edit the data set description that you submitted earlier to the registry.<br>The ID of this data set is: <b>[% docid %]</b></p>
|
258
|
<p> </p>
|
259
|
<p>Please have a look at the
|
260
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide" target="guide">
|
261
|
<b>Guide on How to Complete Data Registry Entries</b></a>
|
262
|
for help with filling of this catalog form.
|
263
|
</p>
|
264
|
<p> </p>
|
265
|
<p align="left">Fields including a red asterisk
|
266
|
(<span class="required">*</span>) are required.
|
267
|
</p>
|
268
|
<p> </p>
|
269
|
<p align="left">If you have any questions, comments or problems
|
270
|
regarding this form, please contact [% adminname %] at
|
271
|
<a href="mailto:[% recipient %]"><i>[% recipient %]</i></a>.
|
272
|
</p>
|
273
|
[% END %]
|
274
|
<!--
|
275
|
</td></tr>
|
276
|
</table>
|
277
|
-->
|
278
|
<p> </p>
|
279
|
<form action="@cgi-prefix@/register-dataset.cgi" method="post">
|
280
|
<input type="hidden" name="cfg" value="[% cfg %]">
|
281
|
<input type="hidden" name="docid" value="[% docid %]">
|
282
|
<input type="hidden" name="stage" value="insert">
|
283
|
<p align="left">
|
284
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#BasicInformation" target="guide">BASIC INFORMATION </a>
|
285
|
</p>
|
286
|
<table width="760" border="0" cellspacing="0" cellpadding="9"
|
287
|
bgcolor="#c6d6e7">
|
288
|
<tr>
|
289
|
<td>
|
290
|
<p align="left">
|
291
|
<span class="required">*</span><span class="label">Name of Person completing this form</span>
|
292
|
</p>
|
293
|
<p>
|
294
|
<input type="TEXT" name="providerGivenName" size="40" value="[%providerGivenName%]">
|
295
|
<span class="required">*</span><span class="label">First Name</span></p>
|
296
|
<p>
|
297
|
<input type="TEXT" name="providerSurName" size="40" value="[%providerSurName%]">
|
298
|
<span class="required">*</span><span class="label">Last Name</span></p>
|
299
|
[% IF showSiteList == 'true' %]
|
300
|
<p align="left">
|
301
|
<select name="site">
|
302
|
[% IF form == 're_entry' %]
|
303
|
<option selected>[%site%]</option>
|
304
|
[% ELSE %]
|
305
|
<option>Select your [% lsite %] here.</option>
|
306
|
[% END %]
|
307
|
[% FOREACH site = siteList %]
|
308
|
<option>[% site %]</option>
|
309
|
[% END %]
|
310
|
</select>
|
311
|
<span class="required">*</span><span class="label">[% usite %] Name</span></p>
|
312
|
[% END %]
|
313
|
<p align="left"> </p>
|
314
|
<p align="left">
|
315
|
<input type="TEXT" name="title" value="[%title%]" size="53">
|
316
|
<span class="required">*</span><span class="label">Data Set Title</span></p>
|
317
|
[% IF cfg == 'nceas' %]
|
318
|
<p align="left">
|
319
|
<span class="required">*</span><span class="label">NCEAS Project(s):</span></p>
|
320
|
<select name="wg" multiple="multiple" size="5">
|
321
|
[% FOREACH project = projects %]
|
322
|
[% SET pname = $project.3 %]
|
323
|
[% IF pname.length > 50 %]
|
324
|
[% SET sname = $project.4 %]
|
325
|
[% END %]
|
326
|
[% SET label = "NCEAS ${project.0}: ${project.1}: $project.4" %]
|
327
|
[% SET value = "NCEAS ${project.0}: ${project.1}: $project.3" %]
|
328
|
[% SET sel = '' %]
|
329
|
[% FOREACH group = wg %]
|
330
|
[% IF group == value %]
|
331
|
[% SET sel = 'selected="selected"' %]
|
332
|
[% END %]
|
333
|
[% END %]
|
334
|
<option value="[% value %]" [% sel %]>[% label %]</option>
|
335
|
[% END %]
|
336
|
</select>
|
337
|
[% END %]
|
338
|
[% IF cfg == 'knb' %]
|
339
|
<p align="left">
|
340
|
<input type="TEXT" name="site" size="40" value="[%site%]">
|
341
|
<span class="required">*</span><span class="label">Organization Name</span>
|
342
|
</p>
|
343
|
[% END %]
|
344
|
</td>
|
345
|
</tr>
|
346
|
</table>
|
347
|
<p align="left">
|
348
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetOriginator" target="guide">PRINCIPAL DATA SET OWNER</a>
|
349
|
</p>
|
350
|
<table border="0" cellpadding="9" width="760" bgcolor="#c6d6e7"
|
351
|
cellspacing="0">
|
352
|
<tr>
|
353
|
<td valign="TOP" colspan="3">
|
354
|
<p>
|
355
|
<input type="TEXT" name="origNamefirst0" size="40" id="origNameFirst" value="[%origNamefirst0%]">
|
356
|
<span class="required">*</span><span class="label">First Name</span></p>
|
357
|
<p>
|
358
|
<input type="TEXT" name="origNamelast0" size="40" id="origNameLast" value="[%origNamelast0%]">
|
359
|
<span class="required">*</span><span class="label">Last Name</span></p>
|
360
|
<p><font size="-1">
|
361
|
<input type="TEXT" name="origNameOrg" size="60" id="origNameOrg" value="[%origNameOrg%]">
|
362
|
<b>Organization Name</b></font></p>
|
363
|
<p><font size="-1">
|
364
|
<input type="TEXT" name="origEmail" id="origEmail" value="[%origEmail%]">
|
365
|
<b>E-Mail</b></font></p>
|
366
|
<p><font size="-1">
|
367
|
<input type="TEXT" name="origPhone" id="origPhone" value="[%origPhone%]">
|
368
|
<b>Phone</b></font></p>
|
369
|
<p><font size="-1">
|
370
|
<input type="TEXT" name="origFAX" id="origFAX" value="[%origFAX%]">
|
371
|
<b>FAX</b></font></p>
|
372
|
<p><font size="-1"><b>Street information (number, street, unit, etc.,
|
373
|
comma-separated)</b></font></p>
|
374
|
<p><font size="-1">
|
375
|
<textarea rows="5" cols="60" id="origDelivery" name="origDelivery">[%origDelivery%]</textarea>
|
376
|
</font></p>
|
377
|
<p><font size="-1">
|
378
|
<input type="TEXT" name="origCity" id="origCity" value="[%origCity%]" size="50">
|
379
|
<b>City</b></font></p>
|
380
|
<p> <font size="-1">
|
381
|
<select name="origState" id="origState">
|
382
|
[% IF form == 're_entry' %]
|
383
|
<option selected>[%origState%]</option>
|
384
|
[% ELSE %]
|
385
|
<option>Select state here.</option>
|
386
|
[% END %]
|
387
|
<option>Alabama</option>
|
388
|
<option>Alaska</option>
|
389
|
<option>American Samoa</option>
|
390
|
<option>Arizona</option>
|
391
|
<option>Arkansas</option>
|
392
|
<option>California</option>
|
393
|
<option>Colorado</option>
|
394
|
<option>Connecticut</option>
|
395
|
<option>Delaware</option>
|
396
|
<option>District of Columbia</option>gh
|
397
|
<option>Federated States of Micronesia</option>
|
398
|
<option>Florida</option>
|
399
|
<option>Georgia</option>
|
400
|
<option>Guam</option>
|
401
|
<option>Hawaii</option>
|
402
|
<option>Idaho</option>
|
403
|
<option>Illinois</option>
|
404
|
<option>Indiana</option>
|
405
|
<option>Iowa</option>
|
406
|
<option>Kansas</option>
|
407
|
<option>Kentucky</option>
|
408
|
<option>Louisiana</option>
|
409
|
<option>Maine</option>
|
410
|
<option>Marshall Islands</option>
|
411
|
<option>Maryland</option>
|
412
|
<option>Massachusetts</option>
|
413
|
<option>Michigan</option>
|
414
|
<option>Minnesota</option>
|
415
|
<option>Mississippi</option>
|
416
|
<option>Missouri</option>
|
417
|
<option>Montana</option>
|
418
|
<option>Nebraska</option>
|
419
|
<option>Nevada</option>
|
420
|
<option>New Hampshire</option>
|
421
|
<option>New Jersey</option>
|
422
|
<option>New Mexico</option>
|
423
|
<option>New York</option>
|
424
|
<option>North Carolina</option>
|
425
|
<option>North Dakota</option>
|
426
|
<option>Northern Mariana Islands</option>
|
427
|
<option>Ohio</option>
|
428
|
<option>Oklahoma</option>
|
429
|
<option>Oregon</option>
|
430
|
<option>Palau</option>
|
431
|
<option>Pennsylvania</option>
|
432
|
<option>Puerto Rico</option>
|
433
|
<option>Rhode Island</option>
|
434
|
<option>South Carolina</option>
|
435
|
<option>South Dakota</option>
|
436
|
<option>Tennessee</option>
|
437
|
<option>Texas</option>
|
438
|
<option>Utah</option>
|
439
|
<option>Vermont</option>
|
440
|
<option>Virgin Islands</option>
|
441
|
<option>Virginia</option>
|
442
|
<option>Washington</option>
|
443
|
<option>West Virginia</option>
|
444
|
<option>Wisconsin</option>
|
445
|
<option>Wyoming</option>
|
446
|
</select>
|
447
|
<b>State</b></font>
|
448
|
<font size="-1">
|
449
|
<input type="TEXT" name="origStateOther" id="origStateOther" value="[%origStateOther%]">
|
450
|
<b>Other State or Province</b></font>
|
451
|
</p>
|
452
|
<p><font size="-1"><b>
|
453
|
<input type="TEXT" name="origZIP" id="origZip" value="[%origZIP%]" size="10">
|
454
|
<b>ZIP</b></b></font></p>
|
455
|
<p><font size="-1">
|
456
|
<input type="TEXT" name="origCountry" id="origCountry" value="[%origCountry%]">
|
457
|
<b>Country</b></font></p>
|
458
|
</tr>
|
459
|
</table>
|
460
|
<p><b><font size="-1" color="#0000ff">
|
461
|
<a
|
462
|
href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#AdditionalOriginators"
|
463
|
target="guide">ADDITIONAL ORIGINATORS</a>
|
464
|
</font></b>
|
465
|
</p>
|
466
|
<table cellspacing="0" border="0" cellpadding="9" width="760"
|
467
|
bgcolor="#c6d6e7">
|
468
|
<tr>
|
469
|
<td width="21%" valign="TOP">
|
470
|
<p><font size="-1"><b>First Name</b></font></p>
|
471
|
</td>
|
472
|
<td width="21%" valign="TOP">
|
473
|
<p><font size="-1"><b>Last Name</b></font></p>
|
474
|
</td>
|
475
|
<td width="58%" valign="TOP">
|
476
|
<p><font size="-1"><b>Role</b></font></p>
|
477
|
</td>
|
478
|
</tr>
|
479
|
<tr>
|
480
|
<td width="21%" valign="TOP">
|
481
|
<p><font size="-1">
|
482
|
<input type="TEXT" name="origNamefirst1" value="[%origNamefirst1%]">
|
483
|
</font></p>
|
484
|
</td>
|
485
|
<td width="21%" valign="TOP">
|
486
|
<p><font size="-1">
|
487
|
<input type="TEXT" name="origNamelast1" value="[%origNamelast1%]">
|
488
|
</font></p>
|
489
|
</td>
|
490
|
<td width="58%" valign="TOP">
|
491
|
<p> <font size="-1">
|
492
|
<select name="origRole1">
|
493
|
[% IF form == 're_entry' %]
|
494
|
<option selected>[%origRole1%]</option>
|
495
|
[% END %]
|
496
|
<option>Principal Investigator</option>
|
497
|
<option>Custodian/Steward</option>
|
498
|
<option>Metadata Provider</option>
|
499
|
<option>Owner</option>
|
500
|
</select>
|
501
|
</font></p>
|
502
|
</td>
|
503
|
</tr>
|
504
|
<tr>
|
505
|
<td width="21%" valign="TOP">
|
506
|
<p><font size="-1">
|
507
|
<input type="TEXT" name="origNamefirst2" value="[%origNamefirst2%]">
|
508
|
</font></p>
|
509
|
</td>
|
510
|
<td width="21%" valign="TOP">
|
511
|
<p><font size="-1">
|
512
|
<input type="TEXT" name="origNamelast2" value="[%origNamelast2%]">
|
513
|
</font></p>
|
514
|
</td>
|
515
|
<td width="58%" valign="TOP">
|
516
|
<p> <font size="-1">
|
517
|
<select name="origRole2">
|
518
|
[% IF form == 're_entry' %]
|
519
|
<option selected>[%origRole2%]</option>
|
520
|
[% END %]
|
521
|
<option>Principal Investigator</option>
|
522
|
<option>Custodian/Steward</option>
|
523
|
<option>Metadata Provider</option>
|
524
|
<option>Owner</option>
|
525
|
</select>
|
526
|
</font></p>
|
527
|
</td>
|
528
|
</tr>
|
529
|
<tr>
|
530
|
<td width="21%" valign="TOP">
|
531
|
<p><font size="-1">
|
532
|
<input type="TEXT" name="origNamefirst3" value="[%origNamefirst3%]">
|
533
|
</font></p>
|
534
|
</td>
|
535
|
<td width="21%" valign="TOP">
|
536
|
<p><font size="-1">
|
537
|
<input type="TEXT" name="origNamelast3" value="[%origNamelast3%]">
|
538
|
</font></p>
|
539
|
</td>
|
540
|
<td width="58%" valign="TOP">
|
541
|
<p> <font size="-1">
|
542
|
<select name="origRole3">
|
543
|
[% IF form == 're_entry' %]
|
544
|
<option selected>[%origRole3%]</option>
|
545
|
[% END %]
|
546
|
<option>Principal Investigator</option>
|
547
|
<option>Custodian/Steward</option>
|
548
|
<option>Metadata Provider</option>
|
549
|
<option>Owner</option>
|
550
|
</select>
|
551
|
</font></p>
|
552
|
</td>
|
553
|
</tr>
|
554
|
<tr>
|
555
|
<td width="21%" valign="TOP">
|
556
|
<p><font size="-1">
|
557
|
<input type="TEXT" name="origNamefirst4" value="[%origNamefirst4%]">
|
558
|
</font></p>
|
559
|
</td>
|
560
|
<td width="21%" valign="TOP">
|
561
|
<p><font size="-1">
|
562
|
<input type="TEXT" name="origNamelast4" value="[%origNamelast4%]">
|
563
|
</font></p>
|
564
|
</td>
|
565
|
<td width="58%" valign="TOP">
|
566
|
<p> <font size="-1">
|
567
|
<select name="origRole4">
|
568
|
[% IF form == 're_entry' %]
|
569
|
<option selected>[%origRole4%]</option>
|
570
|
[% END %]
|
571
|
<option>Principal Investigator</option>
|
572
|
<option>Custodian/Steward</option>
|
573
|
<option>Metadata Provider</option>
|
574
|
<option>Owner</option>
|
575
|
</select>
|
576
|
</font></p>
|
577
|
</td>
|
578
|
</tr>
|
579
|
<tr>
|
580
|
<td width="21%" valign="TOP">
|
581
|
<p><font size="-1">
|
582
|
<input type="TEXT" name="origNamefirst5" value="[%origNamefirst5%]">
|
583
|
</font></p>
|
584
|
</td>
|
585
|
<td width="21%" valign="TOP">
|
586
|
<p><font size="-1">
|
587
|
<input type="TEXT" name="origNamelast5" value="[%origNamelast5%]">
|
588
|
</font></p>
|
589
|
</td>
|
590
|
<td width="58%" valign="TOP">
|
591
|
<p> <font size="-1">
|
592
|
<select name="origRole5">
|
593
|
[% IF form == 're_entry' %]
|
594
|
<option selected>[%origRole5%]</option>
|
595
|
[% END %]
|
596
|
<option>Principal Investigator</option>
|
597
|
<option>Custodian/Steward</option>
|
598
|
<option>Metadata Provider</option>
|
599
|
<option>Owner</option>
|
600
|
</select>
|
601
|
</font></p>
|
602
|
</td>
|
603
|
</tr>
|
604
|
<tr>
|
605
|
<td width="21%" valign="TOP">
|
606
|
<p><font size="-1">
|
607
|
<input type="TEXT" name="origNamefirst6" value="[%origNamefirst6%]">
|
608
|
</font></p>
|
609
|
</td>
|
610
|
<td width="21%" valign="TOP">
|
611
|
<p><font size="-1">
|
612
|
<input type="TEXT" name="origNamelast6" value="[%origNamelast6%]">
|
613
|
</font></p>
|
614
|
</td>
|
615
|
<td width="58%" valign="TOP">
|
616
|
<p> <font size="-1">
|
617
|
<select name="origRole6">
|
618
|
[% IF form == 're_entry' %]
|
619
|
<option selected>[%origRole6%]</option>
|
620
|
[% END %]
|
621
|
<option>Principal Investigator</option>
|
622
|
<option>Custodian/Steward</option>
|
623
|
<option>Metadata Provider</option>
|
624
|
<option>Owner</option>
|
625
|
</select>
|
626
|
</font></p>
|
627
|
</td>
|
628
|
</tr>
|
629
|
<tr>
|
630
|
<td width="21%" valign="TOP">
|
631
|
<p><font size="-1">
|
632
|
<input type="TEXT" name="origNamefirst7" value="[%origNamefirst7%]">
|
633
|
</font></p>
|
634
|
</td>
|
635
|
<td width="21%" valign="TOP">
|
636
|
<p><font size="-1">
|
637
|
<input type="TEXT" name="origNamelast7" value="[%origNamelast7%]">
|
638
|
</font></p>
|
639
|
</td>
|
640
|
<td width="58%" valign="TOP">
|
641
|
<p> <font size="-1">
|
642
|
<select name="origRole7">
|
643
|
[% IF form == 're_entry' %]
|
644
|
<option selected>[%origRole7%]</option>
|
645
|
[% END %]
|
646
|
<option>Principal Investigator</option>
|
647
|
<option>Custodian/Steward</option>
|
648
|
<option>Metadata Provider</option>
|
649
|
<option>Owner</option>
|
650
|
</select>
|
651
|
</font></p>
|
652
|
</td>
|
653
|
</tr>
|
654
|
<tr>
|
655
|
<td width="21%" valign="TOP">
|
656
|
<p><font size="-1">
|
657
|
<input type="TEXT" name="origNamefirst8" value="[%origNamefirst8%]">
|
658
|
</font></p>
|
659
|
</td>
|
660
|
<td width="21%" valign="TOP">
|
661
|
<p><font size="-1">
|
662
|
<input type="TEXT" name="origNamelast8" value="[%origNamelast8%]">
|
663
|
</font></p>
|
664
|
</td>
|
665
|
<td width="58%" valign="TOP">
|
666
|
<p> <font size="-1">
|
667
|
<select name="origRole8">
|
668
|
[% IF form == 're_entry' %]
|
669
|
<option selected>[%origRole8%]</option>
|
670
|
[% END %]
|
671
|
<option>Principal Investigator</option>
|
672
|
<option>Custodian/Steward</option>
|
673
|
<option>Metadata Provider</option>
|
674
|
<option>Owner</option>
|
675
|
</select>
|
676
|
</font></p>
|
677
|
</td>
|
678
|
</tr>
|
679
|
<tr>
|
680
|
<td width="21%" valign="TOP">
|
681
|
<p><font size="-1">
|
682
|
<input type="TEXT" name="origNamefirst9" value="[%origNamefirst9%]">
|
683
|
</font></p>
|
684
|
</td>
|
685
|
<td width="21%" valign="TOP">
|
686
|
<p><font size="-1">
|
687
|
<input type="TEXT" name="origNamelast9" value="[%origNamelast9%]">
|
688
|
</font></p>
|
689
|
</td>
|
690
|
<td width="58%" valign="TOP">
|
691
|
<p> <font size="-1">
|
692
|
<select name="origRole9">
|
693
|
[% IF form == 're_entry' %]
|
694
|
<option selected>[%origRole9%]</option>
|
695
|
[% END %]
|
696
|
<option>Principal Investigator</option>
|
697
|
<option>Custodian/Steward</option>
|
698
|
<option>Metadata Provider</option>
|
699
|
<option>Owner</option>
|
700
|
</select>
|
701
|
</font></p>
|
702
|
</td>
|
703
|
</tr>
|
704
|
<tr>
|
705
|
<td width="21%" valign="TOP">
|
706
|
<p><font size="-1">
|
707
|
<input type="TEXT" name="origNamefirst10" value="[%origNamefirst10%]">
|
708
|
</font></p>
|
709
|
</td>
|
710
|
<td width="21%" valign="TOP">
|
711
|
<p><font size="-1">
|
712
|
<input type="TEXT" name="origNamelast10" value="[%origNamelast10%]">
|
713
|
</font></p>
|
714
|
</td>
|
715
|
<td width="58%" valign="TOP">
|
716
|
<p> <font size="-1">
|
717
|
<select name="origRole10">
|
718
|
[% IF form == 're_entry' %]
|
719
|
<option selected>[%origRole10%]</option>
|
720
|
[% END %]
|
721
|
<option>Principal Investigator</option>
|
722
|
<option>Custodian/Steward</option>
|
723
|
<option>Metadata Provider</option>
|
724
|
<option>Owner</option>
|
725
|
</select>
|
726
|
</font></p>
|
727
|
</td>
|
728
|
</tr>
|
729
|
</table>
|
730
|
<br>
|
731
|
<p align="left"><font size="4" color="0000ff"><b><font size="-1">
|
732
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetAbstract"
|
733
|
target="guide">DATA SET ABSTRACT</a>
|
734
|
</font></b></font></p>
|
735
|
|
736
|
<table width="760" border="0" cellspacing="0" cellpadding="9"
|
737
|
bgcolor="#c6d6e7">
|
738
|
<tr>
|
739
|
<td>
|
740
|
<h2 align="left"><b><font size="-1" color="#ff0000">*</font><font size="-1">Data
|
741
|
Set Abstract</font></b></h2>
|
742
|
<p align="left">
|
743
|
<textarea rows="5" cols="80" name="abstract">[%abstract%]</textarea>
|
744
|
</p>
|
745
|
</td>
|
746
|
</tr>
|
747
|
</table>
|
748
|
<p align="left"><font size="4" color="0000ff"><b><font size="-1">
|
749
|
<a
|
750
|
href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#KeywordInformation"
|
751
|
target="guide">KEYWORD INFORMATION</a>
|
752
|
</font></b></font>
|
753
|
<font size="-1"><b><br>
|
754
|
</b>(for example keywords, have a look at the keyword thesaurus for the <a href=
|
755
|
"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html" target="nasa"><font color=
|
756
|
"008000">NASA Global Change Master Directory (GCMD))</font></a></font></p>
|
757
|
[% numKey = 1 %]
|
758
|
[% IF keyCount > 0 %]
|
759
|
[% numKey = keyCount %]
|
760
|
[% END %]
|
761
|
<input type="hidden" name="keyCount" value="[%numKey%]"
|
762
|
id="keyCount">
|
763
|
<table cellspacing="0" border="0" cellpadding="9" width="760"
|
764
|
bgcolor="#c6d6e7">
|
765
|
<table cellspacing="0" border="0" cellpadding="9" width="760"
|
766
|
bgcolor="#c6d6e7">
|
767
|
<tr>
|
768
|
<td width="34%" valign="TOP">
|
769
|
<p><font size="-1"><b>Keyword</b></font></p>
|
770
|
</td>
|
771
|
<td width="18%" valign="TOP">
|
772
|
<p><font size="-1"><b>Keyword Type</b></font></p>
|
773
|
</td>
|
774
|
<td width="48%" valign="TOP">
|
775
|
<p><font size="-1"><b>Keyword Thesaurus</b></font></p>
|
776
|
</td>
|
777
|
</tr>
|
778
|
[% cnt = 1 %]
|
779
|
[% WHILE cnt <= numKey %]
|
780
|
<tr>
|
781
|
<td>
|
782
|
[% SET key = "keyword${cnt}" %]
|
783
|
<input name="keyword[%cnt%]" value="[%$key%]" size="40">
|
784
|
</td>
|
785
|
|
786
|
<td>
|
787
|
[% SET keyT = "kwType${cnt}" %]
|
788
|
<select name="kwType[%cnt%]">
|
789
|
[% IF form == 're_entry' %]
|
790
|
<option selected>[%$keyT%]</option>
|
791
|
[% END %]
|
792
|
<option>none</option>
|
793
|
<option>theme</option>
|
794
|
<option>place</option>
|
795
|
<option>stratum</option>
|
796
|
<option>temporal</option>
|
797
|
<option>taxonomic</option>
|
798
|
</select>
|
799
|
</td>
|
800
|
|
801
|
<td>
|
802
|
[% SET keyTh = "kwTh${cnt}" %]
|
803
|
<select name="kwTh[%cnt%]">
|
804
|
[% IF form == 're_entry' %]
|
805
|
<option selected>[%$keyTh%]</option>
|
806
|
[% END %]
|
807
|
<option>none</option>
|
808
|
<option>GCMD</option>
|
809
|
</select>
|
810
|
</td>
|
811
|
</tr>
|
812
|
[% cnt = cnt + 1 %]
|
813
|
[% END %]
|
814
|
<tr id="addkeyrow">
|
815
|
<td>
|
816
|
<input type="button" value="Add Keyword" id="addkeybutton1"
|
817
|
onClick="addKeyword()">
|
818
|
</td>
|
819
|
</tr>
|
820
|
</table>
|
821
|
<br>
|
822
|
<p align="left"><font size="4" color="0000ff"><b><font size="-1">
|
823
|
<a
|
824
|
href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#TemporalCoverageOfData"
|
825
|
target="guide">TEMPORAL COVERAGE OF DATA</a>
|
826
|
</font></b></font></p>
|
827
|
<table cellspacing="0" border="0" cellpadding="9" width="760"
|
828
|
bgcolor="#c6d6e7">
|
829
|
<tr>
|
830
|
<td valign="TOP" colspan="3">
|
831
|
<p><font size="-1"><b>Beginning Date of Data Set:</b></font></p>
|
832
|
</td>
|
833
|
</tr>
|
834
|
<tr>
|
835
|
<td width="33%" valign="TOP">
|
836
|
<p><font size="-1">
|
837
|
<input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4">
|
838
|
<b><font color="#ff0000">*</font>Year (YYYY)</b></font></p>
|
839
|
</td>
|
840
|
<td width="33%" valign="TOP">
|
841
|
<p><font size="-1">
|
842
|
<input type="TEXT" name="beginningMonth" value="[%beginningMonth%]" size="4" maxlength="2">
|
843
|
<b><font color="#ff0000">*</font>Month(MM)</b></font></p>
|
844
|
</td>
|
845
|
<td width="33%" valign="TOP">
|
846
|
<p><font size="-1">
|
847
|
<input type="TEXT" name="beginningDay" value="[%beginningDay%]" size="4" maxlength="2">
|
848
|
<b><font color="#ff0000">*</font>Day (DD)</b></font></p>
|
849
|
</td>
|
850
|
</tr>
|
851
|
<tr>
|
852
|
<td valign="TOP" colspan="3">
|
853
|
<p><font size="-1"><b>Ending Date of Data Set (provide no ending date
|
854
|
at all if your data set is open-ended):</b></font></p>
|
855
|
</td>
|
856
|
</tr>
|
857
|
<tr>
|
858
|
<td width="33%" valign="TOP">
|
859
|
<p><font size="-1">
|
860
|
<input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4">
|
861
|
<b>Year (YYYY)</b></font></p>
|
862
|
</td>
|
863
|
<td width="33%" valign="TOP">
|
864
|
<p><font size="-1">
|
865
|
<input type="TEXT" name="endingMonth" value="[%endingMonth%]" size="4" maxlength="2">
|
866
|
<b>Month(MM)</b></font></p>
|
867
|
</td>
|
868
|
<td width="33%" valign="TOP">
|
869
|
<p><font size="-1">
|
870
|
<input type="TEXT" name="endingDay" value="[%endingDay%]" size="4" maxlength="2">
|
871
|
<b>Day (DD)</b></font></p>
|
872
|
</td>
|
873
|
</tr>
|
874
|
</table>
|
875
|
|
876
|
<p align="left">
|
877
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#SpatialCoverageOfData" target="guide">SPATIAL COVERAGE OF DATA</a>
|
878
|
</p>
|
879
|
<table cellspacing="0" border="0" cellpadding="9" width="760"
|
880
|
bgcolor="#c6d6e7">
|
881
|
<tr>
|
882
|
<td valign="top" colspan="4">
|
883
|
<span class="required">*</span><span class="label">Geographic Description</span><br>
|
884
|
Enter a general description of the geographic area in which the data were collected.
|
885
|
This can be a simple place name (e.g., Santa Barbara) or a fuller description.<br>
|
886
|
<textarea rows="3" cols="80" name="geogdesc">[% geogdesc %]</textarea>
|
887
|
</td>
|
888
|
</tr>
|
889
|
<tr>
|
890
|
<td valign="TOP" colspan="4">
|
891
|
<p class="label">Coordinates (in Degrees, Minutes and Seconds; at
|
892
|
least 1 lat./long. pair is required):</p>
|
893
|
</td>
|
894
|
</tr>
|
895
|
<tr>
|
896
|
<td valign="TOP" colspan="4">
|
897
|
<p>Enter the first lat./long. pair only to indicate
|
898
|
a point location. Enter both coordinate pairs to indicate a bounding
|
899
|
box. In case of a bounding box, the first coordinate pair is the
|
900
|
northwest corner and the second coordinate pair is the southeast
|
901
|
corner of the bounding box.</p>
|
902
|
</td>
|
903
|
</tr>
|
904
|
[% IF showSiteList == 'true' %]
|
905
|
<tr>
|
906
|
<td valign="TOP" colspan="4" class="tablepanel">
|
907
|
<input class="required"
|
908
|
type="CHECKBOX" name="useSiteCoord" [%useSiteCoord%]>
|
909
|
Use [% lsite %] coordinates. (This indicates that the data were
|
910
|
collected at the [% lsite %]. If you check this box, you don't need
|
911
|
to fill in the lat./long. fields below).
|
912
|
</td>
|
913
|
</tr>
|
914
|
[% END %]
|
915
|
<tr>
|
916
|
<td width="18%" valign="TOP">
|
917
|
<span class="required">*</span><span class="label">Latitude</span>
|
918
|
</td>
|
919
|
<td width="20%" valign="TOP">
|
920
|
North/South
|
921
|
</td>
|
922
|
<td width="20%" valign="TOP">
|
923
|
<span class="required">*</span><span class="label">Longitude</span>
|
924
|
</td>
|
925
|
<td width="42%" valign="TOP">
|
926
|
West/East
|
927
|
</td>
|
928
|
</tr>
|
929
|
<tr>
|
930
|
<td width="20%" valign="TOP">
|
931
|
<input type="TEXT" name="latDeg1" value="[%latDeg1%]" size="3" maxlength="3">
|
932
|
<input type="TEXT" name="latMin1" value="[%latMin1%]" size="2" maxlength="2">
|
933
|
<input type="TEXT" name="latSec1" value="[%latSec1%]" size="2" maxlength="2">
|
934
|
</td>
|
935
|
<td width="20%" valign="TOP">
|
936
|
<select name="hemisphLat1">
|
937
|
[% IF form == 're_entry' %]
|
938
|
<option selected>[%hemisphLat1%]</option>
|
939
|
[% END %]
|
940
|
<option>N</option>
|
941
|
<option>S</option>
|
942
|
</select>
|
943
|
</td>
|
944
|
<td width="20%" valign="TOP">
|
945
|
<input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3">
|
946
|
<input type="TEXT" name="longMin1" value="[%longMin1%]" size="2" maxlength="2">
|
947
|
<input type="TEXT" name="longSec1" value="[%longSec1%]" size="2" maxlength="2">
|
948
|
</td>
|
949
|
<td width="40%" valign="TOP">
|
950
|
<select name="hemisphLong1">
|
951
|
[% IF form == 're_entry' %]
|
952
|
<option selected>[%hemisphLong1%]</option>
|
953
|
[% END %]
|
954
|
<option>W</option>
|
955
|
<option>E</option>
|
956
|
</select>
|
957
|
</td>
|
958
|
</tr>
|
959
|
<tr>
|
960
|
<td valign="TOP" colspan="4">
|
961
|
The second lat./long. pair, if provided, indicates
|
962
|
the southeast corner of a bounding box.
|
963
|
</td>
|
964
|
</tr>
|
965
|
<tr>
|
966
|
<td width="18%" valign="TOP">
|
967
|
Latitude
|
968
|
</td>
|
969
|
<td width="20%" valign="TOP">
|
970
|
North/South
|
971
|
</td>
|
972
|
<td width="20%" valign="TOP">
|
973
|
Longitude
|
974
|
</td>
|
975
|
<td width="42%" valign="TOP">
|
976
|
West/East
|
977
|
</td>
|
978
|
</tr>
|
979
|
<tr>
|
980
|
<td width="20%" valign="TOP">
|
981
|
<input type="TEXT" name="latDeg2" value="[%latDeg2%]" size="3" maxlength="3">
|
982
|
<input type="TEXT" name="latMin2" value="[%latMin2%]" size="2" maxlength="2">
|
983
|
<input type="TEXT" name="latSec2" value="[%latSec2%]" size="2" maxlength="2">
|
984
|
</td>
|
985
|
<td width="20%" valign="TOP">
|
986
|
<select name="hemisphLat2">
|
987
|
[% IF form == 're_entry' %]
|
988
|
<option selected>[%hemisphLat2%]</option>
|
989
|
[% END %]
|
990
|
<option>N</option>
|
991
|
<option>S</option>
|
992
|
</select>
|
993
|
</td>
|
994
|
<td width="20%" valign="TOP">
|
995
|
<input type="TEXT" name="longDeg2" value="[%longDeg2%]" size="3" maxlength="3">
|
996
|
<input type="TEXT" name="longMin2" value="[%longMin2%]" size="2" maxlength="2">
|
997
|
<input type="TEXT" name="longSec2" value="[%longSec2%]" size="2" maxlength="2">
|
998
|
</td>
|
999
|
<td width="40%" valign="TOP">
|
1000
|
<select name="hemisphLong2">
|
1001
|
[% IF form == 're_entry' %]
|
1002
|
<option selected>[%hemisphLong2%]</option>
|
1003
|
[% END %]
|
1004
|
<option>W</option>
|
1005
|
<option>E</option>
|
1006
|
</select>
|
1007
|
</td>
|
1008
|
</tr>
|
1009
|
</table>
|
1010
|
|
1011
|
<p align="left">
|
1012
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#TaxonomicCoverage" target="guide">TAXONOMIC COVERAGE OF DATA</a>
|
1013
|
</p>
|
1014
|
<table cellspacing="0" border="0" cellpadding="9" width="760"
|
1015
|
bgcolor="#c6d6e7">
|
1016
|
<tbody>
|
1017
|
<tr>
|
1018
|
<td colspan="2">
|
1019
|
<p class="label">List the taxa associated with this set of data.</p>
|
1020
|
<p>The Taxon Rank should indicate the level in the taxonomic
|
1021
|
hierarchy (e.g., Phylum or Species) and the Taxonomic Name should
|
1022
|
be the scientific name for the organism at that level
|
1023
|
(e.g., <i>Ursus arctos</i>).</p>
|
1024
|
[% numTaxa = 1 %]
|
1025
|
[% IF taxaCount > 0 %]
|
1026
|
[% numTaxa = taxaCount %]
|
1027
|
[% END %]
|
1028
|
<input type="hidden" name="taxaCount" value="[%numTaxa%]"
|
1029
|
id="taxaCount">
|
1030
|
</td>
|
1031
|
</tr>
|
1032
|
|
1033
|
<tr>
|
1034
|
<td>
|
1035
|
<table border="0">
|
1036
|
<tbody>
|
1037
|
<tr>
|
1038
|
<td><span class="label">Taxon Rank</span></td>
|
1039
|
<td><span class="label">Taxon Name</span></td>
|
1040
|
</tr>
|
1041
|
[% cnt = 1 %]
|
1042
|
[% WHILE cnt <= numTaxa %]
|
1043
|
<tr>
|
1044
|
<td>
|
1045
|
[% SET trn = "taxonRankName${cnt}" %]
|
1046
|
<input name="taxonRankName[%cnt%]" value="[% $trn %]" size="25">
|
1047
|
</td>
|
1048
|
<td>
|
1049
|
[% SET trv = "taxonRankValue${cnt}" %]
|
1050
|
<input name="taxonRankValue[%cnt%]" value="[% $trv %]" size="25">
|
1051
|
</td>
|
1052
|
</tr>
|
1053
|
[% cnt = cnt + 1 %]
|
1054
|
[% END %]
|
1055
|
<tr id="addtaxarow">
|
1056
|
<td>
|
1057
|
<input type="button" value="Add taxon" id="addtaxabutton1"
|
1058
|
onClick="addTaxon()">
|
1059
|
</td>
|
1060
|
</tr>
|
1061
|
</tbody>
|
1062
|
</table>
|
1063
|
|
1064
|
</td>
|
1065
|
</tr>
|
1066
|
<tr>
|
1067
|
<td colspan="2">
|
1068
|
<p class="label">Taxonomic Authority</p>
|
1069
|
<p>List the source(s) used for identifying and naming taxa in this
|
1070
|
list. These sources should provide comprehensive information about
|
1071
|
the taxonomic concepts indicated by the names listed.</p>
|
1072
|
<textarea rows="5" cols="80" name="taxaAuth">[% taxaAuth %]</textarea>
|
1073
|
</td>
|
1074
|
</tr>
|
1075
|
</tbody>
|
1076
|
</table>
|
1077
|
|
1078
|
<p align="left">
|
1079
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#Methods" target="guide">METHODS</a>
|
1080
|
</p>
|
1081
|
<table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
|
1082
|
<tbody>
|
1083
|
<tr>
|
1084
|
<td valign="top" colspan="3">
|
1085
|
<p class="label">Data Collection Methods</p>
|
1086
|
</td>
|
1087
|
</tr>
|
1088
|
<tr>
|
1089
|
<td valign="top">
|
1090
|
<p>
|
1091
|
<input type="text" name="methodTitle" value="[%methodTitle%]" size="40">
|
1092
|
<span class="label">Title of Method</span>
|
1093
|
</p>
|
1094
|
<p>
|
1095
|
<span class="label">Method Description</span>
|
1096
|
[% IF methodPara.size < 1 %]
|
1097
|
<br>
|
1098
|
<textarea rows="5" cols="80" name="methodPara"></textarea>
|
1099
|
[% END %]
|
1100
|
[% FOREACH para = methodPara %]
|
1101
|
<br>
|
1102
|
<textarea rows="5" cols="80" name="methodPara">[% para %]</textarea>
|
1103
|
[% END %]
|
1104
|
</p>
|
1105
|
<p>
|
1106
|
<input type="button" value="Add paragraph" id="addparabutton1"
|
1107
|
onClick="addParagraph()">
|
1108
|
</p><br>
|
1109
|
<p class="label">Description of Study Extent</p>
|
1110
|
<p>Describe the temporal, spatial and taxonomic extent of the study,
|
1111
|
supplementing the information on coverage provided above. For example,
|
1112
|
if the temporal coverage of the data is 1990-2000, you might provide
|
1113
|
details about any years that were missed or the months in which sampling
|
1114
|
occurred.</p>
|
1115
|
<p>
|
1116
|
<textarea rows="5" cols="80" name="studyExtentDescription">[% studyExtentDescription %]</textarea>
|
1117
|
</p><br>
|
1118
|
<p class="label">Sampling Description</p>
|
1119
|
<p>Describe the sampling design of the study. For example, you might
|
1120
|
describe the way in which treatments were assigned to sampling units.
|
1121
|
</p>
|
1122
|
<p>
|
1123
|
<textarea rows="5" cols="80" name="samplingDescription">[% samplingDescription %]</textarea>
|
1124
|
</p>
|
1125
|
</td>
|
1126
|
</tbody>
|
1127
|
</table>
|
1128
|
|
1129
|
<p align="left">
|
1130
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DataSetContactAddress" target="guide">DATA SET CONTACT</a>
|
1131
|
</p>
|
1132
|
<table border="0" cellspacing="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
|
1133
|
<tr>
|
1134
|
<td valign="TOP" colspan="3">
|
1135
|
<input type="CHECKBOX" name="useOrigAddress" onClick="copyContact()" id="copyCheckBox" [%useOrigAddress%]>
|
1136
|
Use the same name and address as the PRINCIPAL DATA SET OWNER above (If you check this box,
|
1137
|
you don't need to fill in the address fields below).</td>
|
1138
|
</tr>
|
1139
|
<tr>
|
1140
|
<td valign="TOP" colspan="8">
|
1141
|
<p>
|
1142
|
<input type="TEXT" name="origNamefirstContact" id="contactNameFirst" value="[%origNamefirstContact%]" size="40">
|
1143
|
<b><font color="#ff0000">*</font>First Name</b></p>
|
1144
|
<p>
|
1145
|
<input type="TEXT" name="origNamelastContact" id="contactNameLast" value="[%origNamelastContact%]" size="40">
|
1146
|
<b><font color="#ff0000">*</font>Last Name</b></p>
|
1147
|
<p>
|
1148
|
<input type="TEXT" name="origNameOrgContact" id="contactNameOrg" value="[%origNameOrgContact%]" size="60">
|
1149
|
<b>Organization Name</b></p>
|
1150
|
<p>
|
1151
|
<input type="TEXT" name="origEmailContact" id="contactEmail" value="[%origEmailContact%]">
|
1152
|
<b>E-Mail</b></p>
|
1153
|
<p>
|
1154
|
<input type="TEXT" name="origPhoneContact" id="contactPhone" value="[%origPhoneContact%]">
|
1155
|
<b>Phone</b></p>
|
1156
|
<p>
|
1157
|
<input type="TEXT" name="origFAXContact" id="contactFAX" value="[%origFAXContact%]">
|
1158
|
<b>FAX</b></p>
|
1159
|
<p><b>Street information (number, street, unit, etc.,
|
1160
|
comma-separated)</b></p>
|
1161
|
<p>
|
1162
|
<textarea rows="5" cols="60" name="origDeliveryContact" id="contactDelivery">[%origDeliveryContact%]</textarea></p>
|
1163
|
<p>
|
1164
|
<input type="TEXT" name="origCityContact" id="contactCity" value="[%origCityContact%]" size="50">
|
1165
|
<b>City</b></p>
|
1166
|
<p>
|
1167
|
<select id="contactState" name="origStateContact">
|
1168
|
[% IF form == 're_entry' %]
|
1169
|
<option>[%origStateContact%]</option>
|
1170
|
[% ELSE %]
|
1171
|
<option>Select state here.</option>
|
1172
|
[% END %]
|
1173
|
<option>Alabama</option>
|
1174
|
<option>Alaska</option>
|
1175
|
<option>American Samoa</option>
|
1176
|
<option>Arizona</option>
|
1177
|
<option>Arkansas</option>
|
1178
|
<option>California</option>
|
1179
|
<option>Colorado</option>
|
1180
|
<option>Connecticut</option>
|
1181
|
<option>Delaware</option>
|
1182
|
<option>District of Columbia</option>
|
1183
|
<option>Federated States of Micronesia</option>
|
1184
|
<option>Florida</option>
|
1185
|
<option>Georgia</option>
|
1186
|
<option>Guam</option>
|
1187
|
<option>Hawaii</option>
|
1188
|
<option>Idaho</option>
|
1189
|
<option>Illinois</option>
|
1190
|
<option>Indiana</option>
|
1191
|
<option>Iowa</option>
|
1192
|
<option>Kansas</option>
|
1193
|
<option>Kentucky</option>
|
1194
|
<option>Louisiana</option>
|
1195
|
<option>Maine</option>
|
1196
|
<option>Marshall Islands</option>
|
1197
|
<option>Maryland</option>
|
1198
|
<option>Massachusetts</option>
|
1199
|
<option>Michigan</option>
|
1200
|
<option>Minnesota</option>
|
1201
|
<option>Mississippi</option>
|
1202
|
<option>Missouri</option>
|
1203
|
<option>Montana</option>
|
1204
|
<option>Nebraska</option>
|
1205
|
<option>Nevada</option>
|
1206
|
<option>New Hampshire</option>
|
1207
|
<option>New Jersey</option>
|
1208
|
<option>New Mexico</option>
|
1209
|
<option>New York</option>
|
1210
|
<option>North Carolina</option>
|
1211
|
<option>North Dakota</option>
|
1212
|
<option>Northern Mariana Islands</option>
|
1213
|
<option>Ohio</option>
|
1214
|
<option>Oklahoma</option>
|
1215
|
<option>Oregon</option>
|
1216
|
<option>Palau</option>
|
1217
|
<option>Pennsylvania</option>
|
1218
|
<option>Puerto Rico</option>
|
1219
|
<option>Rhode Island</option>
|
1220
|
<option>South Carolina</option>
|
1221
|
<option>South Dakota</option>
|
1222
|
<option>Tennessee</option>
|
1223
|
<option>Texas</option>
|
1224
|
<option>Utah</option>
|
1225
|
<option>Vermont</option>
|
1226
|
<option>Virgin Islands</option>
|
1227
|
<option>Virginia</option>
|
1228
|
<option>Washington</option>
|
1229
|
<option>West Virginia</option>
|
1230
|
<option>Wisconsin</option>
|
1231
|
<option>Wyoming</option>
|
1232
|
</select>
|
1233
|
<b>State</font></b>
|
1234
|
<input type="TEXT" name="origStateOtherContact" id="contactStateOther" value="[%origStateOtherContact%]">
|
1235
|
<b>Other State or Province</b>
|
1236
|
</p>
|
1237
|
<p>
|
1238
|
<input type="TEXT" name="origZIPContact" size="10" id="contactZip" value="[%origZIPContact%]">
|
1239
|
<b>ZIP</b></p>
|
1240
|
<p>
|
1241
|
<input type="TEXT" name="origCountryContact" id="contactCountry" value="[%origCountryContact%]">
|
1242
|
<b>Country</b></p>
|
1243
|
</td>
|
1244
|
</tr>
|
1245
|
</table>
|
1246
|
|
1247
|
<p align="left">
|
1248
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#DistributionIinformation" target="guide">DISTRIBUTION INFORMATION</a>
|
1249
|
</p>
|
1250
|
<table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
|
1251
|
<tr>
|
1252
|
<td width="50%" valign="TOP">
|
1253
|
<p align="left"><font size="-1">
|
1254
|
<input type="TEXT" name="identifier" value="[%identifier%]" size="40">
|
1255
|
<b><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#Site-specificCode"
|
1256
|
target="guide">Dataset Name or Identifier (important)</a> </b></font></p>
|
1257
|
|
1258
|
<p><font size="-1"><b><font color="#ff0000">*</font>Data Medium:</b></font></p>
|
1259
|
<p> <font size="-1">
|
1260
|
<select name="dataMedium">
|
1261
|
[% IF form == 're_entry' %]
|
1262
|
<option selected>[%dataMedium%]</option>
|
1263
|
[% ELSE %]
|
1264
|
<option>Select type of medium here.</option>
|
1265
|
[% END %]
|
1266
|
<option>digital</option>
|
1267
|
<option>hardcopy</option>
|
1268
|
<option>other</option>
|
1269
|
</select>
|
1270
|
</font></p>
|
1271
|
<p><font size="-1"><b>If you selected "other" for Data Medium, enter detail
|
1272
|
below</b></font></p>
|
1273
|
<p><font size="-1">
|
1274
|
<input type="TEXT" name="dataMediumOther" value="[%dataMediumOther%]" size="40">
|
1275
|
</font></p>
|
1276
|
</td>
|
1277
|
</tr>
|
1278
|
<tr>
|
1279
|
<td width="50%" valign="TOP">
|
1280
|
<p> <font size="-1"><b><font color="#ff0000">*</font>Use Constraints:</b></font>
|
1281
|
</p>
|
1282
|
<p> <font size="-1">
|
1283
|
<select name="useConstraints">
|
1284
|
[% IF form == 're_entry' %]
|
1285
|
<option selected>[%useConstraints%]</option>
|
1286
|
[% ELSE %]
|
1287
|
<option>Select restrictions here.</option>
|
1288
|
[% END %]
|
1289
|
<option>no restrictions</option>
|
1290
|
<option>obtain permission from originator(s)</option>
|
1291
|
<option>other</option>
|
1292
|
</select>
|
1293
|
</font></p>
|
1294
|
<p><font size="-1"><b>If you selected "other" for Use Constraints, enter
|
1295
|
detail below.</b></font></p>
|
1296
|
<p><font size="-1">
|
1297
|
<input type="TEXT" name="useConstraintsOther" value="[%useConstraintsOther%]" size="40">
|
1298
|
</font></p>
|
1299
|
</td>
|
1300
|
</tr>
|
1301
|
<tr>
|
1302
|
<td>
|
1303
|
<p align="left"><font size="-1">
|
1304
|
<input type="TEXT" name="url" value="[%url%]" size="50">
|
1305
|
<b>URL (for location of data set or of more metadata)</b></font></p>
|
1306
|
|
1307
|
<p align="left"><font size="-1"><b>
|
1308
|
<a
|
1309
|
href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide#AdditionalInformation"
|
1310
|
target="guide">Additional Information/Remarks:</a>
|
1311
|
</b></font></p>
|
1312
|
<p align="left"><font size="-1">
|
1313
|
<textarea rows="5" cols="60" name="addComments">[%addComments%]</textarea>
|
1314
|
</font></p>
|
1315
|
</td>
|
1316
|
</tr>
|
1317
|
</table>
|
1318
|
|
1319
|
<div align="center">
|
1320
|
<table width="760" border="0" cellpadding="9" align="left" bgcolor="#C6d6e7" cellspacing="0">
|
1321
|
<tr>
|
1322
|
<td width="760">
|
1323
|
<div align="left"> <font color="#FF0000" size="-1">NOTE: You must submit
|
1324
|
your data in order for these to be entered in the Data Registry!</font>
|
1325
|
<p>
|
1326
|
<input type="SUBMIT" value="Submit Entry" name="SUBMIT">
|
1327
|
<input type="RESET" name="RESET">
|
1328
|
</p>
|
1329
|
</div>
|
1330
|
</td>
|
1331
|
</tr>
|
1332
|
</table>
|
1333
|
<p> </p>
|
1334
|
<div align="left"> </div>
|
1335
|
<p align="left">
|
1336
|
<p align="left"> </p>
|
1337
|
<p align="left"> </p>
|
1338
|
</div>
|
1339
|
</form>
|
1340
|
<p> </p>
|
1341
|
<p> </p>
|
1342
|
|
1343
|
[% INCLUDE "genericFooter.tmpl" %]
|