Project

General

Profile

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
  </script>
50

    
51
[% IF cfg == 'nrs' %]
52
  [% lsite = 'reserve' %]
53
  [% usite = 'Reserve' %]
54
  [% showSiteList = 'true' %]
55
[% ELSIF cfg == 'obfs' %]
56
  [% lsite = 'station' %]
57
  [% usite = 'Station' %]
58
  [% showSiteList = 'true' %]
59
[% ELSIF cfg == 'nceas' %]
60
  [% lsite = 'station' %]
61
  [% usite = 'Station' %]
62
  [% showSiteList = 'false' %]
63
[% ELSE %]
64
  [% lsite = 'station' %]
65
  [% usite = 'Station' %]
66
  [% showSiteList = 'false' %]
67
[% END %]
68

    
69
      [% IF form != 're_entry' %]	
70
      <p>Use this page to submit a <b>new</b> data set description for
71
         inclusion in the registry.</p>
72
      <p>&nbsp;</p>
73
      <p>Please have a look at the 
74
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide" target="guide">
75
        <b>Guide on How to Complete Data Registry Entries</b></a> 
76
        before you start filling in this catalog form. Also, use your browser's 
77
        Reload/Refresh function to make sure you see the latest version of this 
78
        page.
79
      </p>
80
      <p>&nbsp;</p>
81
      <p align="left">Fields including a red asterisk 
82
      (<span class="required">*</span>) are required.
83
      </p>
84
      <p>&nbsp;</p>
85
      <p align="left">If you have any questions, comments or problems 
86
      regarding this form, please contact [% adminname %] at 
87
      <a href="mailto:[% recipient %]"><i>[% recipient %]</i></a>.      
88
      </p>
89
      [% ELSE %]
90
      <p>Use this page to edit the data set description that you submitted earlier to the registry.</p>
91
      <p>&nbsp;</p>
92
      <p>Please have a look at the 
93
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide" target="guide">
94
        <b>Guide on How to Complete Data Registry Entries</b></a> 
95
        for help with filling of this catalog form.
96
      </p>
97
      <p>&nbsp;</p>
98
      <p align="left">Fields including a red asterisk 
99
      (<span class="required">*</span>) are required.
100
      </p>
101
      <p>&nbsp;</p>
102
      <p align="left">If you have any questions, comments or problems 
103
      regarding this form, please contact [% adminname %] at 
104
      <a href="mailto:[% recipient %]"><i>[% recipient %]</i></a>.      
105
      </p>
106
      [% END %]
107
  <!--
108
  </td></tr>
109
</table>
110
-->
111
<p>&nbsp;</p>
112
<form action="@cgi-prefix@/register-dataset.cgi" method="post">
113
  <input type="hidden" name="cfg" value="[% cfg %]">
114
  <input type="hidden" name="docid" value="[% docid %]">
115
  <input type="hidden" name="stage" value="insert">
116
  <p align="left">
117
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#BasicInformation" target="guide">BASIC INFORMATION </a>
118
  </p>
119
  <table width="760" border="0" cellspacing="0" cellpadding="9"
120
bgcolor="#c6d6e7">
121
    <tr> 
122
      <td> 
123
        <p align="left">
124
          <span class="required">*</span><span class="label">Name of Person completing this form</span>
125
	    </p>
126
        <p>
127
          <input type="TEXT" name="providerGivenName" size="40" value="[%providerGivenName%]">
128
          <span class="required">*</span><span class="label">First Name</span></p>
129
        <p>
130
          <input type="TEXT" name="providerSurName" size="40" value="[%providerSurName%]">
131
          <span class="required">*</span><span class="label">Last Name</span></p>
132
[% IF showSiteList == 'true' %]
133
        <p align="left">
134
          <select name="site">
135
	    [% IF form == 're_entry' %]
136
	    	<option selected>[%site%]</option>
137
	    [% ELSE %]
138
	        <option>Select your [% lsite %] here.</option>
139
	    [% END %]
140
            [% FOREACH site = siteList %]
141
              <option>[% site %]</option>
142
            [% END %]
143
          </select>
144
          <span class="required">*</span><span class="label">[% usite %] Name</span></p>
145
[% END %]
146
[% IF cfg == 'nceas' %]
147
        <p align="left"> 
148
          <span class="required">*</span><span class="label">Working Group(s):</span></p>
149
          <select name="wg" multiple="multiple" size="5">
150
            [% FOREACH project = projects %]
151
              [% SET label = "${project.1}: $project.3 (NCEAS ${project.0})" %]
152
              [% SET sel = '' %]
153
              [% FOREACH group = wg %]
154
                  [% IF group == label %]
155
                      [% SET sel = 'selected="selected"' %]
156
                  [% END %]
157
              [% END %]
158
              <option [% sel %]>[% label %]</option>
159
            [% END %]
160
          </select>
161
[% END %]
162
        <p align="left">
163
          <input type="TEXT" name="title" value="[%title%]" size="53">
164
          <span class="required">*</span><span class="label">Data Set Title</span></p>
165
      </td>
166
    </tr>
167
  </table>
168
  <p align="left">
169
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetOriginator" target="guide">DATA SET ORIGINATOR</a>
170
  </p>
171
  <table border="0" cellpadding="9" width="760" bgcolor="#c6d6e7"
172
cellspacing="0">
173
    <tr> 
174
      <td valign="TOP" colspan="3"> 
175
        <p>
176
          <input type="TEXT" name="origNamefirst0" size="40" value="[%origNamefirst0%]">
177
          <span class="required">*</span><span class="label">First Name</span></p>
178
        <p>
179
          <input type="TEXT" name="origNamelast0" size="40" value="[%origNamelast0%]">
180
          <span class="required">*</span><span class="label">Last Name</span></p>
181
        <p><font size="-1"> 
182
          <input type="TEXT" name="origNameOrg" size="60" value="[%origNameOrg%]">
183
          <b>Organization Name</b></font></p>
184
        <p><font size="-1"><b>Originator Address Information (for Individual or 
185
          Organization):</b></font></p>
186
        <p><font size="-1"> 
187
          <input type="TEXT" name="origEmail" value="[%origEmail%]">
188
          <b>E-Mail</b></font></p>
189
        <p><font size="-1"> 
190
          <input type="TEXT" name="origPhone" value="[%origPhone%]">
191
          <b>Phone</b></font></p>
192
        <p><font size="-1"> 
193
          <input type="TEXT" name="origFAX" value="[%origFAX%]">
194
          <b>FAX</b></font></p>
195
        <p><font size="-1"><b>Delivery information (number, street, unit, etc., 
196
          comma-separated)</b></font></p>
197
        <p><font size="-1"> 
198
          <textarea rows="5" cols="60" name="origDelivery">[%origDelivery%]</textarea>
199
          </font></p>
200
        <p><font size="-1"> 
201
          <input type="TEXT" name="origCity" value="[%origCity%]" size="50">
202
          <b>City</b></font></p>
203
        <p> <font size="-1">
204
          <select name="origState">
205
	    [% IF form == 're_entry' %]
206
                <option selected>[%origState%]</option>
207
	    [% ELSE %]
208
		<option>Select state here.</option>
209
	    [% END %]
210
            <option>Alabama</option>
211
            <option>Alaska</option>
212
            <option>American Samoa</option>
213
            <option>Arizona</option>
214
            <option>Arkansas</option>
215
            <option>California</option>
216
            <option>Colorado</option>
217
            <option>Connecticut</option>
218
            <option>Delaware</option>
219
            <option>District of Columbia</option>
220
            <option>Federated States of Micronesia</option>
221
            <option>Florida</option>
222
            <option>Georgia</option>
223
            <option>Guam</option>
224
            <option>Hawaii</option>
225
            <option>Idaho</option>
226
            <option>Illinois</option>
227
            <option>Indiana</option>
228
            <option>Iowa</option>
229
            <option>Kansas</option>
230
            <option>Kentucky</option>
231
            <option>Louisiana</option>
232
            <option>Maine</option>
233
            <option>Marshall Islands</option>
234
            <option>Maryland</option>
235
            <option>Massachusetts</option>
236
            <option>Michigan</option>
237
            <option>Minnesota</option>
238
            <option>Mississippi</option>
239
            <option>Missouri</option>
240
            <option>Montana</option>
241
            <option>Nebraska</option>
242
            <option>Nevada</option>
243
            <option>New Hampshire</option>
244
            <option>New Jersey</option>
245
            <option>New Mexico</option>
246
            <option>New York</option>
247
            <option>North Carolina</option>
248
            <option>North Dakota</option>
249
            <option>Northern Mariana Islands</option>
250
            <option>Ohio</option>
251
            <option>Oklahoma</option>
252
            <option>Oregon</option>
253
            <option>Palau</option>
254
            <option>Pennsylvania</option>
255
            <option>Puerto Rico</option>
256
            <option>Rhode Island</option>
257
            <option>South Carolina</option>
258
            <option>South Dakota</option>
259
            <option>Tennessee</option>
260
            <option>Texas</option>
261
            <option>Utah</option>
262
            <option>Vermont</option>
263
            <option>Virgin Islands</option>
264
            <option>Virginia</option>
265
            <option>Washington</option>
266
            <option>West Virginia</option>
267
            <option>Wisconsin</option>
268
            <option>Wyoming</option>
269
          </select>
270
          <b>State</b></font>
271
          <font size="-1"> 
272
          <input type="TEXT" name="origStateOther" value="[%origStateOther%]">
273
          <b>Other State or Province</b></font>
274
          </p>
275
        <p><font size="-1"><b> 
276
          <input type="TEXT" name="origZIP" value="[%origZIP%]" size="10">
277
          <b>ZIP</b></b></font></p>
278
        <p><font size="-1"> 
279
          <input type="TEXT" name="origCountry" value="[%origCountry%]">
280
          <b>Country</b></font></p>
281
    </tr>
282
  </table>
283
  <p><b><font size="-1" color="#0000ff">
284
      <a 
285
       href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalOriginators"
286
       target="guide">ADDITIONAL ORIGINATORS</a>
287
	</font></b>
288
  </p>
289
  <table cellspacing="0" border="0" cellpadding="9" width="760"
290
bgcolor="#c6d6e7">
291
    <tr> 
292
      <td width="21%" valign="TOP"> 
293
        <p><font size="-1"><b>First Name</b></font></p>
294
      </td>
295
      <td width="21%" valign="TOP"> 
296
        <p><font size="-1"><b>Last Name</b></font></p>
297
      </td>
298
      <td width="58%" valign="TOP"> 
299
        <p><font size="-1"><b>Role</b></font></p>
300
      </td>
301
    </tr>
302
    <tr> 
303
      <td width="21%" valign="TOP"> 
304
        <p><font size="-1"> 
305
          <input type="TEXT" name="origNamefirst1" value="[%origNamefirst1%]">
306
          </font></p>
307
      </td>
308
      <td width="21%" valign="TOP"> 
309
        <p><font size="-1"> 
310
          <input type="TEXT" name="origNamelast1" value="[%origNamelast1%]">
311
          </font></p>
312
      </td>
313
      <td width="58%" valign="TOP"> 
314
        <p> <font size="-1">
315
          <select name="origRole1">
316
	    [% IF form == 're_entry' %]
317
	     	<option selected>[%origRole1%]</option>
318
	    [% END %]
319
            <option>Principal Investigator</option>
320
            <option>Editor</option>
321
            <option>Publisher</option>
322
            <option>Processor</option>
323
            <option>Custodian/Steward</option>
324
            <option>Author</option>
325
            <option>Content Provider</option>
326
            <option>Distributor</option>
327
            <option>Metadata Provider</option>
328
            <option>Originator</option>
329
            <option>Owner</option>
330
            <option>User</option>
331
          </select>
332
          </font></p>
333
      </td>
334
    </tr>
335
    <tr> 
336
      <td width="21%" valign="TOP"> 
337
        <p><font size="-1"> 
338
          <input type="TEXT" name="origNamefirst2" value="[%origNamefirst2%]">
339
          </font></p>
340
      </td>
341
      <td width="21%" valign="TOP"> 
342
        <p><font size="-1"> 
343
          <input type="TEXT" name="origNamelast2" value="[%origNamelast2%]">
344
          </font></p>
345
      </td>
346
      <td width="58%" valign="TOP"> 
347
        <p> <font size="-1">
348
          <select name="origRole2">
349
	    [% IF form == 're_entry' %]
350
	     	<option selected>[%origRole2%]</option>
351
	    [% END %]
352
            <option>Principal Investigator</option>
353
            <option>Editor</option>
354
            <option>Publisher</option>
355
            <option>Processor</option>
356
            <option>Custodian/Steward</option>
357
            <option>Author</option>
358
            <option>Content Provider</option>
359
            <option>Distributor</option>
360
            <option>Metadata Provider</option>
361
            <option>Originator</option>
362
            <option>Owner</option>
363
            <option>User</option>
364
          </select>
365
          </font></p>
366
      </td>
367
    </tr>
368
    <tr> 
369
      <td width="21%" valign="TOP"> 
370
        <p><font size="-1"> 
371
          <input type="TEXT" name="origNamefirst3" value="[%origNamefirst3%]">
372
          </font></p>
373
      </td>
374
      <td width="21%" valign="TOP"> 
375
        <p><font size="-1"> 
376
          <input type="TEXT" name="origNamelast3" value="[%origNamelast3%]">
377
          </font></p>
378
      </td>
379
      <td width="58%" valign="TOP"> 
380
        <p> <font size="-1">
381
          <select name="origRole3">
382
	    [% IF form == 're_entry' %]
383
	     	<option selected>[%origRole3%]</option>
384
	    [% END %]
385
            <option>Principal Investigator</option>
386
            <option>Editor</option>
387
            <option>Publisher</option>
388
            <option>Processor</option>
389
            <option>Custodian/Steward</option>
390
            <option>Author</option>
391
            <option>Content Provider</option>
392
            <option>Distributor</option>
393
            <option>Metadata Provider</option>
394
            <option>Originator</option>
395
            <option>Owner</option>
396
            <option>User</option>
397
          </select>
398
          </font></p>
399
      </td>
400
    </tr>
401
    <tr> 
402
      <td width="21%" valign="TOP"> 
403
        <p><font size="-1"> 
404
          <input type="TEXT" name="origNamefirst4" value="[%origNamefirst4%]">
405
          </font></p>
406
      </td>
407
      <td width="21%" valign="TOP"> 
408
        <p><font size="-1"> 
409
          <input type="TEXT" name="origNamelast4" value="[%origNamelast4%]">
410
          </font></p>
411
      </td>
412
      <td width="58%" valign="TOP"> 
413
        <p> <font size="-1">
414
          <select name="origRole4">
415
	    [% IF form == 're_entry' %]
416
	     	<option selected>[%origRole4%]</option>
417
	    [% END %]
418
            <option>Principal Investigator</option>
419
            <option>Editor</option>
420
            <option>Publisher</option>
421
            <option>Processor</option>
422
            <option>Custodian/Steward</option>
423
            <option>Author</option>
424
            <option>Content Provider</option>
425
            <option>Distributor</option>
426
            <option>Metadata Provider</option>
427
            <option>Originator</option>
428
            <option>Owner</option>
429
            <option>User</option>
430
          </select>
431
          </font></p>
432
      </td>
433
    </tr>
434
    <tr> 
435
      <td width="21%" valign="TOP"> 
436
        <p><font size="-1"> 
437
          <input type="TEXT" name="origNamefirst5" value="[%origNamefirst5%]">
438
          </font></p>
439
      </td>
440
      <td width="21%" valign="TOP"> 
441
        <p><font size="-1"> 
442
          <input type="TEXT" name="origNamelast5" value="[%origNamelast5%]">
443
          </font></p>
444
      </td>
445
      <td width="58%" valign="TOP"> 
446
        <p> <font size="-1">
447
          <select name="origRole5">
448
	    [% IF form == 're_entry' %]
449
	     	<option selected>[%origRole5%]</option>
450
	    [% END %]
451
            <option>Principal Investigator</option>
452
            <option>Editor</option>
453
            <option>Publisher</option>
454
            <option>Processor</option>
455
            <option>Custodian/Steward</option>
456
            <option>Author</option>
457
            <option>Content Provider</option>
458
            <option>Distributor</option>
459
            <option>Metadata Provider</option>
460
            <option>Originator</option>
461
            <option>Owner</option>
462
            <option>User</option>
463
          </select>
464
          </font></p>
465
      </td>
466
    </tr>
467
    <tr> 
468
      <td width="21%" valign="TOP"> 
469
        <p><font size="-1"> 
470
          <input type="TEXT" name="origNamefirst6" value="[%origNamefirst6%]">
471
          </font></p>
472
      </td>
473
      <td width="21%" valign="TOP"> 
474
        <p><font size="-1"> 
475
          <input type="TEXT" name="origNamelast6" value="[%origNamelast6%]">
476
          </font></p>
477
      </td>
478
      <td width="58%" valign="TOP"> 
479
        <p> <font size="-1">
480
          <select name="origRole6">
481
	    [% IF form == 're_entry' %]
482
	     	<option selected>[%origRole6%]</option>
483
	    [% END %]
484
            <option>Principal Investigator</option>
485
            <option>Editor</option>
486
            <option>Publisher</option>
487
            <option>Processor</option>
488
            <option>Custodian/Steward</option>
489
            <option>Author</option>
490
            <option>Content Provider</option>
491
            <option>Distributor</option>
492
            <option>Metadata Provider</option>
493
            <option>Originator</option>
494
            <option>Owner</option>
495
            <option>User</option>
496
          </select>
497
          </font></p>
498
      </td>
499
    </tr>
500
    <tr> 
501
      <td width="21%" valign="TOP"> 
502
        <p><font size="-1"> 
503
          <input type="TEXT" name="origNamefirst7" value="[%origNamefirst7%]">
504
          </font></p>
505
      </td>
506
      <td width="21%" valign="TOP"> 
507
        <p><font size="-1"> 
508
          <input type="TEXT" name="origNamelast7" value="[%origNamelast7%]">
509
          </font></p>
510
      </td>
511
      <td width="58%" valign="TOP"> 
512
        <p> <font size="-1">
513
          <select name="origRole7">
514
	    [% IF form == 're_entry' %]
515
	     	<option selected>[%origRole7%]</option>
516
	    [% END %] 
517
            <option>Principal Investigator</option>
518
            <option>Editor</option>
519
            <option>Publisher</option>
520
            <option>Processor</option>
521
            <option>Custodian/Steward</option>
522
            <option>Author</option>
523
            <option>Content Provider</option>
524
            <option>Distributor</option>
525
            <option>Metadata Provider</option>
526
            <option>Originator</option>
527
            <option>Owner</option>
528
            <option>User</option>
529
          </select>
530
          </font></p>
531
      </td>
532
    </tr>
533
    <tr> 
534
      <td width="21%" valign="TOP"> 
535
        <p><font size="-1"> 
536
          <input type="TEXT" name="origNamefirst8" value="[%origNamefirst8%]">
537
          </font></p>
538
      </td>
539
      <td width="21%" valign="TOP"> 
540
        <p><font size="-1"> 
541
          <input type="TEXT" name="origNamelast8" value="[%origNamelast8%]">
542
          </font></p>
543
      </td>
544
      <td width="58%" valign="TOP"> 
545
        <p> <font size="-1">
546
          <select name="origRole8">
547
	    [% IF form == 're_entry' %]
548
	     	<option selected>[%origRole8%]</option>
549
	    [% END %]
550
            <option>Principal Investigator</option>
551
            <option>Editor</option>
552
            <option>Publisher</option>
553
            <option>Processor</option>
554
            <option>Custodian/Steward</option>
555
            <option>Author</option>
556
            <option>Content Provider</option>
557
            <option>Distributor</option>
558
            <option>Metadata Provider</option>
559
            <option>Originator</option>
560
            <option>Owner</option>
561
            <option>User</option>
562
          </select>
563
          </font></p>
564
      </td>
565
    </tr>
566
    <tr> 
567
      <td width="21%" valign="TOP"> 
568
        <p><font size="-1"> 
569
          <input type="TEXT" name="origNamefirst9" value="[%origNamefirst9%]">
570
          </font></p>
571
      </td>
572
      <td width="21%" valign="TOP"> 
573
        <p><font size="-1"> 
574
          <input type="TEXT" name="origNamelast9" value="[%origNamelast9%]">
575
          </font></p>
576
      </td>
577
      <td width="58%" valign="TOP"> 
578
        <p> <font size="-1">
579
          <select name="origRole9">
580
	    [% IF form == 're_entry' %]
581
	     	<option selected>[%origRole9%]</option>
582
	    [% END %]
583
            <option>Principal Investigator</option>
584
            <option>Editor</option>
585
            <option>Publisher</option>
586
            <option>Processor</option>
587
            <option>Custodian/Steward</option>
588
            <option>Author</option>
589
            <option>Content Provider</option>
590
            <option>Distributor</option>
591
            <option>Metadata Provider</option>
592
            <option>Originator</option>
593
            <option>Owner</option>
594
            <option>User</option>
595
          </select>
596
          </font></p>
597
      </td>
598
    </tr>
599
    <tr> 
600
      <td width="21%" valign="TOP"> 
601
        <p><font size="-1"> 
602
          <input type="TEXT" name="origNamefirst10" value="[%origNamefirst10%]">
603
          </font></p>
604
      </td>
605
      <td width="21%" valign="TOP"> 
606
        <p><font size="-1"> 
607
          <input type="TEXT" name="origNamelast10" value="[%origNamelast10%]">
608
          </font></p>
609
      </td>
610
      <td width="58%" valign="TOP"> 
611
        <p> <font size="-1">
612
          <select name="origRole10">
613
	    [% IF form == 're_entry' %]
614
	     	<option selected>[%origRole10%]</option>
615
	    [% END %]
616
            <option>Principal Investigator</option>
617
            <option>Editor</option>
618
            <option>Publisher</option>
619
            <option>Processor</option>
620
            <option>Custodian/Steward</option>
621
            <option>Author</option>
622
            <option>Content Provider</option>
623
            <option>Distributor</option>
624
            <option>Metadata Provider</option>
625
            <option>Originator</option>
626
            <option>Owner</option>
627
            <option>User</option>
628
          </select>
629
          </font></p>
630
      </td>
631
    </tr>
632
  </table>
633
  <br>
634
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
635
       <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetAbstract"
636
          target="guide">DATA SET ABSTRACT</a>
637
	</font></b></font></p>
638

    
639
  <table width="760" border="0" cellspacing="0" cellpadding="9"
640
bgcolor="#c6d6e7">
641
    <tr> 
642
      <td> 
643
        <h2 align="left"><b><font size="-1" color="#ff0000">*</font><font size="-1">Data 
644
          Set Abstract</font></b></h2>
645
        <p align="left"> 
646
          <textarea rows="5" cols="80" name="abstract">[%abstract%]</textarea>
647
        </p>
648
      </td>
649
    </tr>
650
  </table>
651
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
652
       <a 
653
        href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#KeywordInformation"
654
        target="guide">KEYWORD INFORMATION</a>
655
	</font></b></font> 
656
    <font size="-1"><b><br>
657
    </b>(for example keywords, have a look at the keyword thesaurus for the <a href=
658
"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html"><font color=
659
"008000">NASA Global Change Master Directory (GCMD))</font></a></font></p>
660
  <table cellspacing="0" border="0" cellpadding="9" width="760"
661
bgcolor="#c6d6e7">
662
    <tr> 
663
      <td width="34%" valign="TOP"> 
664
        <p><font size="-1"><b>Keyword</b></font></p>
665
      </td>
666
      <td width="18%" valign="TOP"> 
667
        <p><font size="-1"><b>Keyword Type</b></font></p>
668
      </td>
669
      <td width="48%" valign="TOP"> 
670
        <p><font size="-1"><b>Keyword Thesaurus</b></font></p>
671
      </td>
672
    </tr>
673
    <tr> 
674
      <td width="34%" valign="TOP"> 
675
        <p><font size="-1"> 
676
          <input type="TEXT" name="keyword0" value="[%keyword0%]" size="40">
677
          </font></p>
678
      </td>
679
      <td width="18%" valign="TOP"> 
680
        <p> <font size="-1">
681
          <select name="kwType0">
682
	    [% IF form == 're_entry' %]
683
	     	<option selected>[%kwType0%]</option>
684
	    [% END %]
685
	    <option>none</option>
686
            <option>theme</option>
687
            <option>place</option>
688
            <option>stratum</option>
689
            <option>temporal</option>
690
            <option>taxonomic</option>
691
          </select>
692
          </font></p>
693
      </td>
694
      <td width="48%" valign="TOP"> 
695
        <p> <font size="-1">
696
          <select name="kwTh0">
697
	    [% IF form == 're_entry' %]
698
	     	<option selected>[%kwTh0%]</option>
699
	    [% END %]
700
	    <option>none</option>
701
            <option>GCMD</option>
702
          </select>
703
          </font></p>
704
      </td>
705
    </tr>
706
    <tr> 
707
      <td width="34%" valign="TOP"> 
708
        <p><font size="-1"> 
709
          <input type="TEXT" name="keyword1" value="[%keyword1%]" size="40">
710
          </font></p>
711
      </td>
712
      <td width="18%" valign="TOP"> 
713
        <p> <font size="-1">
714
          <select name="kwType1">
715
	    [% IF form == 're_entry' %]
716
	     	<option selected>[%kwType1%]</option>
717
	    [% END %]
718
	    <option>none</option>
719
            <option>theme</option>
720
            <option>place</option>
721
            <option>stratum</option>
722
            <option>temporal</option>
723
            <option>taxonomic</option>
724
          </select>
725
          </font></p>
726
      </td>
727
      <td width="48%" valign="TOP"> 
728
        <p> <font size="-1">
729
          <select name="kwTh1">
730
	    [% IF form == 're_entry' %]
731
	     	<option selected>[%kwTh1%]</option>
732
	    [% END %]
733
	    <option>none</option>
734
            <option>GCMD</option>
735
          </select>
736
          </font></p>
737
      </td>
738
    </tr>
739
    <tr> 
740
      <td width="34%" valign="TOP"> 
741
        <p><font size="-1"> 
742
          <input type="TEXT" name="keyword2" value="[%keyword2%]" size="40">
743
          </font></p>
744
      </td>
745
      <td width="18%" valign="TOP"> 
746
        <p> <font size="-1">
747
          <select name="kwType2">
748
	    [% IF form == 're_entry' %]
749
	     	<option selected>[%kwType2%]</option>
750
	    [% END %]
751
	    <option>none</option>
752
            <option>theme</option>
753
            <option>place</option>
754
            <option>stratum</option>
755
            <option>temporal</option>
756
            <option>taxonomic</option>
757
          </select>
758
          </font></p>
759
      </td>
760
      <td width="48%" valign="TOP"> 
761
        <p> <font size="-1">
762
          <select name="kwTh2">
763
	    [% IF form == 're_entry' %]
764
	     	<option selected>[%kwTh2%]</option>
765
	    [% END %]
766
	    <option>none</option>
767
            <option>GCMD</option>
768
          </select>
769
          </font></p>
770
      </td>
771
    </tr>
772
    <tr> 
773
      <td width="34%" valign="TOP"> 
774
        <p><font size="-1"> 
775
          <input type="TEXT" name="keyword3" value="[%keyword3%]" size="40">
776
          </font></p>
777
      </td>
778
      <td width="18%" valign="TOP"> 
779
        <p> <font size="-1">
780
          <select name="kwType3">
781
	    [% IF form == 're_entry' %]
782
	     	<option selected>[%kwType3%]</option>
783
	    [% END %]
784
	    <option>none</option>
785
            <option>theme</option>
786
            <option>place</option>
787
            <option>stratum</option>
788
            <option>temporal</option>
789
            <option>taxonomic</option>
790
          </select>
791
          </font></p>
792
      </td>
793
      <td width="48%" valign="TOP"> 
794
        <p> <font size="-1">
795
          <select name="kwTh3">
796
	    [% IF form == 're_entry' %]
797
	     	<option selected>[%kwTh3%]</option>
798
	    [% END %]
799
	    <option>none</option>
800
            <option>GCMD</option>
801
          </select>
802
          </font></p>
803
      </td>
804
    </tr>
805
    <tr> 
806
      <td width="34%" valign="TOP"> 
807
        <p><font size="-1"> 
808
          <input type="TEXT" name="keyword4" value="[%keyword4%]" size="40">
809
          </font></p>
810
      </td>
811
      <td width="18%" valign="TOP"> 
812
        <p> <font size="-1">
813
          <select name="kwType4">
814
	    [% IF form == 're_entry' %]
815
	     	<option selected>[%kwType4%]</option>
816
	    [% END %]
817
	    <option>none</option>
818
            <option>theme</option>
819
            <option>place</option>
820
            <option>stratum</option>
821
            <option>temporal</option>
822
            <option>taxonomic</option>
823
          </select>
824
          </font></p>
825
      </td>
826
      <td width="48%" valign="TOP"> 
827
        <p> <font size="-1">
828
          <select name="kwTh4">
829
	    [% IF form == 're_entry' %]
830
	     	<option selected>[%kwTh4%]</option>
831
	    [% END %]
832
	    <option>none</option>
833
            <option>GCMD</option>
834
          </select>
835
          </font></p>
836
      </td>
837
    </tr>
838
    <tr> 
839
      <td width="34%" valign="TOP"> 
840
        <p><font size="-1"> 
841
          <input type="TEXT" name="keyword5" value="[%keyword5%]" size="40">
842
          </font></p>
843
      </td>
844
      <td width="18%" valign="TOP"> 
845
        <p> <font size="-1">
846
          <select name="kwType5">
847
	    [% IF form == 're_entry' %]
848
	     	<option selected>[%kwType5%]</option>
849
	    [% END %]
850
	    <option>none</option>
851
            <option>theme</option>
852
            <option>place</option>
853
            <option>stratum</option>
854
            <option>temporal</option>
855
            <option>taxonomic</option>
856
          </select>
857
          </font></p>
858
      </td>
859
      <td width="48%" valign="TOP"> 
860
        <p> <font size="-1">
861
          <select name="kwTh5">
862
	    [% IF form == 're_entry' %]
863
	     	<option selected>[%kwTh5%]</option>
864
	    [% END %]
865
 	    <option>none</option>
866
            <option>GCMD</option>
867
          </select>
868
          </font></p>
869
      </td>
870
    </tr>
871
    <tr> 
872
      <td width="34%" valign="TOP"> 
873
        <p><font size="-1"> 
874
          <input type="TEXT" name="keyword6" value="[%keyword6%]" size="40">
875
          </font></p>
876
      </td>
877
      <td width="18%" valign="TOP"> 
878
        <p> <font size="-1">
879
          <select name="kwType6">
880
	    [% IF form == 're_entry' %]
881
	     	<option selected>[%kwType6%]</option>
882
	    [% END %]
883
	    <option>none</option>
884
            <option>theme</option>
885
            <option>place</option>
886
            <option>stratum</option>
887
            <option>temporal</option>
888
            <option>taxonomic</option>
889
          </select>
890
          </font></p>
891
      </td>
892
      <td width="48%" valign="TOP"> 
893
        <p> <font size="-1">
894
          <select name="kwTh6">
895
	    [% IF form == 're_entry' %]
896
	     	<option selected>[%kwTh6%]</option>
897
	    [% END %]
898
            <option>none</option>	
899
            <option>GCMD</option>
900
          </select>
901
          </font></p>
902
      </td>
903
    </tr>
904
    <tr> 
905
      <td width="34%" valign="TOP"> 
906
        <p><font size="-1"> 
907
          <input type="TEXT" name="keyword7" value="[%keyword7%]" size="40">
908
          </font></p>
909
      </td>
910
      <td width="18%" valign="TOP"> 
911
        <p> <font size="-1">
912
          <select name="kwType7">
913
	    [% IF form == 're_entry' %]
914
	     	<option selected>[%kwType7%]</option>
915
	    [% END %]
916
	    <option>none</option>
917
            <option>theme</option>
918
            <option>place</option>
919
            <option>stratum</option>
920
            <option>temporal</option>
921
            <option>taxonomic</option>
922
          </select>
923
          </font></p>
924
      </td>
925
      <td width="48%" valign="TOP"> 
926
        <p> <font size="-1">
927
          <select name="kwTh7">
928
	    [% IF form == 're_entry' %]
929
	     	<option selected>[%kwTh7%]</option>
930
	    [% END %]
931
            <option>none</option>
932
            <option>GCMD</option>
933
          </select>
934
          </font></p>
935
      </td>
936
    </tr>
937
    <tr> 
938
      <td width="34%" valign="TOP"> 
939
        <p><font size="-1"> 
940
          <input type="TEXT" name="keyword8" value="[%keyword8%]" size="40">
941
          </font></p>
942
      </td>
943
      <td width="18%" valign="TOP"> 
944
        <p> <font size="-1">
945
          <select name="kwType8">
946
	    [% IF form == 're_entry' %]
947
	     	<option selected>[%kwType8%]</option>
948
	    [% END %]
949
	    <option>none</option>
950
            <option>theme</option>
951
            <option>place</option>
952
            <option>stratum</option>
953
            <option>temporal</option>
954
            <option>taxonomic</option>
955
          </select>
956
          </font></p>
957
      </td>
958
      <td width="48%" valign="TOP"> 
959
        <p> <font size="-1">
960
          <select name="kwTh8">
961
	    [% IF form == 're_entry' %]
962
	     	<option selected>[%kwTh8%]</option>
963
	    [% END %]
964
            <option>none</option>
965
            <option>GCMD</option>
966
          </select>
967
          </font></p>
968
      </td>
969
    </tr>
970
    <tr> 
971
      <td width="34%" valign="TOP"> 
972
        <p><font size="-1"> 
973
          <input type="TEXT" name="keyword9" value="[%keyword9%]" size="40">
974
          </font></p>
975
      </td>
976
      <td width="18%" valign="TOP"> 
977
        <p> <font size="-1">
978
          <select name="kwType9">
979
	    [% IF form == 're_entry' %]
980
	     	<option selected>[%kwType9%]</option>
981
	    [% END %]
982
 	    <option>none</option>
983
            <option>theme</option>
984
            <option>place</option>
985
            <option>stratum</option>
986
            <option>temporal</option>
987
            <option>taxonomic</option>
988
          </select>
989
          </font></p>
990
      </td>
991
      <td width="48%" valign="TOP"> 
992
        <p> <font size="-1">
993
          <select name="kwTh9">
994
	    [% IF form == 're_entry' %]
995
	     	<option selected>[%kwTh9%]</option>
996
	    [% END %]    
997
            <option>none</option>
998
            <option>GCMD</option>
999
          </select>
1000
          </font></p>
1001
      </td>
1002
    </tr>
1003
  </table>
1004
  <br>
1005
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
1006
  <a
1007
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TemporalCoverageOfData"
1008
   target="guide">TEMPORAL COVERAGE OF DATA</a>
1009
	</font></b></font></p>
1010
  <table cellspacing="0" border="0" cellpadding="9" width="760"
1011
bgcolor="#c6d6e7">
1012
    <tr> 
1013
      <td valign="TOP" colspan="3"> 
1014
        <p><font size="-1"><b>Beginning Date of Data Set:</b></font></p>
1015
      </td>
1016
    </tr>
1017
    <tr> 
1018
      <td width="33%" valign="TOP"> 
1019
        <p><font size="-1"> 
1020
          <input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4">
1021
          <b><font color="#ff0000">*</font>Year (YYYY)</b></font></p>
1022
      </td>
1023
      <td width="33%" valign="TOP"> 
1024
        <p><font size="-1"> 
1025
          <input type="TEXT" name="beginningMonth" value="[%beginningMonth%]" size="4" maxlength="2">
1026
          <b><font color="#ff0000">*</font>Month(MM)</b></font></p>
1027
      </td>
1028
      <td width="33%" valign="TOP"> 
1029
        <p><font size="-1"> 
1030
          <input type="TEXT" name="beginningDay" value="[%beginningDay%]" size="4" maxlength="2">
1031
          <b><font color="#ff0000">*</font>Day (DD)</b></font></p>
1032
      </td>
1033
    </tr>
1034
    <tr> 
1035
      <td valign="TOP" colspan="3"> 
1036
        <p><font size="-1"><b>Ending Date of Data Set (provide no ending date 
1037
          at all if your data set is open-ended):</b></font></p>
1038
      </td>
1039
    </tr>
1040
    <tr> 
1041
      <td width="33%" valign="TOP"> 
1042
        <p><font size="-1"> 
1043
          <input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4">
1044
          <b>Year (YYYY)</b></font></p>
1045
      </td>
1046
      <td width="33%" valign="TOP"> 
1047
        <p><font size="-1"> 
1048
          <input type="TEXT" name="endingMonth" value="[%endingMonth%]" size="4" maxlength="2">
1049
          <b>Month(MM)</b></font></p>
1050
      </td>
1051
      <td width="33%" valign="TOP"> 
1052
        <p><font size="-1"> 
1053
          <input type="TEXT" name="endingDay" value="[%endingDay%]" size="4" maxlength="2">
1054
          <b>Day (DD)</b></font></p>
1055
      </td>
1056
    </tr>
1057
  </table>
1058

    
1059
  <p align="left">
1060
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#SpatialCoverageOfData" target="guide">SPATIAL COVERAGE OF DATA</a>
1061
  </p>
1062
  <table cellspacing="0" border="0" cellpadding="9" width="760"
1063
bgcolor="#c6d6e7">
1064
    <tr>
1065
    <td valign="top" colspan="4">
1066
    <span class="required">*</span><span class="label">Geographic Description</span><br>
1067
    Enter a general description of the geographic area in which the data were collected.
1068
    This can be a simple place name (e.g., Santa Barbara) or a fuller description.<br>
1069
    <textarea rows="3" cols="80" name="geogdesc">[% geogdesc %]</textarea>
1070
    </td>
1071
    </tr>
1072
    <tr> 
1073
      <td valign="TOP" colspan="4"> 
1074
        <p class="label">Coordinates (in Degrees, Minutes and Seconds; at 
1075
          least 1 lat./long. pair is required):</p>
1076
      </td>
1077
    </tr>
1078
    <tr> 
1079
      <td valign="TOP" colspan="4"> 
1080
        <p>Enter the first lat./long. pair only to indicate 
1081
          a point location. Enter both coordinate pairs to indicate a bounding
1082
          box. In case of a bounding box, the first coordinate pair is the
1083
          northwest corner and the second coordinate pair is the southeast
1084
          corner of the bounding box.</p>
1085
      </td>
1086
    </tr>
1087
[% IF showSiteList == 'true' %]
1088
    <tr>
1089
      <td valign="TOP" colspan="4" class="tablepanel">
1090
        <input class="required"
1091
        type="CHECKBOX" name="useSiteCoord" [%useSiteCoord%]>
1092
        Use [% lsite %] coordinates. (This indicates that the data were
1093
        collected at the [% lsite %]. If you check this box, you don't need
1094
        to fill in the lat./long. fields below).
1095
        </td>
1096
    </tr>
1097
[% END %]
1098
    <tr> 
1099
      <td width="18%" valign="TOP"> 
1100
        <span class="required">*</span><span class="label">Latitude</span>
1101
      </td>
1102
      <td width="20%" valign="TOP"> 
1103
        &nbsp;North/South
1104
      </td>
1105
      <td width="20%" valign="TOP"> 
1106
        <span class="required">*</span><span class="label">Longitude</span>
1107
      </td>
1108
      <td width="42%" valign="TOP"> 
1109
        &nbsp;West/East
1110
      </td>
1111
    </tr>
1112
    <tr> 
1113
      <td width="20%" valign="TOP"> 
1114
          <input type="TEXT" name="latDeg1" value="[%latDeg1%]" size="3" maxlength="3">
1115
          <input type="TEXT" name="latMin1" value="[%latMin1%]" size="2" maxlength="2">
1116
          <input type="TEXT" name="latSec1" value="[%latSec1%]" size="2" maxlength="2">
1117
      </td>
1118
      <td width="20%" valign="TOP"> 
1119
          <select name="hemisphLat1">
1120
	    [% IF form == 're_entry' %]
1121
	    	<option selected>[%hemisphLat1%]</option>
1122
	    [% END %]
1123
            <option>N</option>
1124
            <option>S</option>
1125
          </select>
1126
      </td>
1127
      <td width="20%" valign="TOP"> 
1128
          <input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3">
1129
          <input type="TEXT" name="longMin1" value="[%longMin1%]" size="2" maxlength="2">
1130
          <input type="TEXT" name="longSec1" value="[%longSec1%]" size="2" maxlength="2">
1131
      </td>
1132
      <td width="40%" valign="TOP"> 
1133
          <select name="hemisphLong1">
1134
	    [% IF form == 're_entry' %]
1135
	    	<option selected>[%hemisphLong1%]</option>
1136
	    [% END %]
1137
            <option>W</option>
1138
            <option>E</option>
1139
          </select>
1140
      </td>
1141
    </tr>
1142
    <tr> 
1143
      <td valign="TOP" colspan="4"> 
1144
        The second lat./long. pair, if provided, indicates 
1145
        the southeast corner of a bounding box.
1146
      </td>
1147
    </tr>
1148
    <tr> 
1149
      <td width="18%" valign="TOP"> 
1150
        Latitude
1151
      </td>
1152
      <td width="20%" valign="TOP"> 
1153
        &nbsp;North/South
1154
      </td>
1155
      <td width="20%" valign="TOP"> 
1156
        Longitude
1157
      </td>
1158
      <td width="42%" valign="TOP"> 
1159
        West/East
1160
      </td>
1161
    </tr>
1162
    <tr> 
1163
      <td width="20%" valign="TOP"> 
1164
          <input type="TEXT" name="latDeg2" value="[%latDeg2%]" size="3" maxlength="3">
1165
          <input type="TEXT" name="latMin2" value="[%latMin2%]" size="2" maxlength="2">
1166
          <input type="TEXT" name="latSec2" value="[%latSec2%]" size="2" maxlength="2">
1167
      </td>
1168
      <td width="20%" valign="TOP"> 
1169
          <select name="hemisphLat2">
1170
	    [% IF form == 're_entry' %]	
1171
	    	<option selected>[%hemisphLat2%]</option>
1172
            [% END %]
1173
	    <option>N</option>
1174
            <option>S</option>
1175
          </select>
1176
      </td>
1177
      <td width="20%" valign="TOP"> 
1178
          <input type="TEXT" name="longDeg2" value="[%longDeg2%]" size="3" maxlength="3">
1179
          <input type="TEXT" name="longMin2" value="[%longMin2%]" size="2" maxlength="2">
1180
          <input type="TEXT" name="longSec2" value="[%longSec2%]" size="2" maxlength="2">
1181
      </td>
1182
      <td width="40%" valign="TOP"> 
1183
          <select name="hemisphLong2">
1184
	    [% IF form == 're_entry' %]
1185
	    	<option selected>[%hemisphLong2%]</option>
1186
	    [% END %]
1187
            <option>W</option>
1188
            <option>E</option>
1189
          </select>
1190
      </td>
1191
    </tr>
1192
  </table>
1193

    
1194
  <p align="left">
1195
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TaxonomicCoverage" target="guide">TAXONOMIC COVERAGE OF DATA</a>
1196
   </p>
1197
  <table cellspacing="0" border="0" cellpadding="9" width="760" 
1198
    bgcolor="#c6d6e7">
1199
    <tbody>
1200
    <tr> 
1201
        <td colspan="2">
1202
        <p class="label">List the taxa associated with this set of data.</p>
1203
        <p>The Taxon Rank should indicate the level in the taxonomic
1204
        hierarchy (e.g., Phylum or Species) and the Taxonomic Name should 
1205
        be the scientific name for the organism at that level 
1206
        (e.g., <i>Ursus arctos</i>).</p>
1207
        [% numTaxa = 1 %]
1208
        [% IF taxaCount > 0 %]
1209
            [% numTaxa = taxaCount %]
1210
        [% END %]
1211
        <input type="hidden" name="taxaCount" value="[%numTaxa%]" 
1212
            id="taxaCount">
1213
        </td>
1214
    </tr>
1215

    
1216
    <tr>
1217
    <td>
1218
        <table border="0">
1219
        <tbody>
1220
        <tr> 
1221
            <td><span class="label">Taxon Rank</span></td>
1222
            <td><span class="label">Taxon Name</span></td>
1223
        </tr>
1224
        [% cnt = 1 %]
1225
        [% WHILE cnt <= numTaxa %]
1226
            <tr> 
1227
            <td>
1228
            [% SET trn = "taxonRankName${cnt}" %]
1229
            <input name="taxonRankName[%cnt%]" value="[% $trn %]" size="25">
1230
            </td>
1231
            <td>
1232
            [% SET trv = "taxonRankValue${cnt}" %]
1233
            <input name="taxonRankValue[%cnt%]" value="[% $trv %]" size="25">
1234
            </td>
1235
            </tr>
1236
            [% cnt = cnt + 1 %]
1237
         [% END %]
1238
        <tr id="addtaxarow"> 
1239
            <td>
1240
                <input type="button" value="Add taxon" id="addtaxabutton1"
1241
                    onClick="addTaxon()">
1242
            </td>
1243
        </tr>
1244
        </tbody>
1245
        </table>
1246

    
1247
     </td>
1248
     </tr>
1249
     <tr> 
1250
        <td colspan="2">
1251
        <p class="label">Taxonomic Authority</p>
1252
        <p>List the source(s) used for identifying and naming taxa in this
1253
        list.  These sources should provide comprehensive information about
1254
        the taxonomic concepts indicated by the names listed.</p>
1255
        <textarea rows="5" cols="80" name="taxaAuth">[% taxaAuth %]</textarea>
1256
        </td>
1257
     </tr>
1258
     </tbody>
1259
   </table>
1260

    
1261
  <p align="left">
1262
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Methods" target="guide">METHODS</a>
1263
   </p>
1264
  <table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1265
    <tbody>
1266
    <tr> 
1267
      <td valign="top" colspan="3"> 
1268
        <p class="label">Data Collection Methods</p>
1269
      </td>
1270
    </tr>
1271
    <tr> 
1272
      <td valign="top"> 
1273
        <p>
1274
          <input type="text" name="methodTitle" value="[%methodTitle%]" size="40">
1275
          <span class="label">Title of Method</span>
1276
        </p>
1277
        <p>
1278
          <span class="label">Method Description</span>
1279
        [% IF methodPara.size < 1 %]
1280
          <br>
1281
          <textarea rows="5" cols="80" name="methodPara"></textarea>
1282
        [% END %]
1283
        [% FOREACH para = methodPara %]
1284
          <br>
1285
          <textarea rows="5" cols="80" name="methodPara">[% para %]</textarea>
1286
        [% END %]
1287
        </p>
1288
        <p>
1289
          <input type="button" value="Add paragraph" id="addparabutton1"
1290
                 onClick="addParagraph()">
1291
        </p><br>
1292
        <p class="label">Description of Study Extent</p>
1293
        <p>Describe the temporal, spatial and taxonomic extent of the study,
1294
        supplementing the information on coverage provided above.  For example,
1295
        if the temporal coverage of the data is 1990-2000, you might provide 
1296
        details about any years that were missed or the months in which sampling
1297
        occurred.</p>
1298
        <p>
1299
          <textarea rows="5" cols="80" name="studyExtentDescription">[% studyExtentDescription %]</textarea>
1300
        </p><br>
1301
        <p class="label">Sampling Description</p>
1302
        <p>Describe the sampling design of the study.  For example, you might 
1303
        describe the way in which treatments were assigned to sampling units.
1304
        </p>
1305
        <p>
1306
          <textarea rows="5" cols="80" name="samplingDescription">[% samplingDescription %]</textarea>
1307
        </p>
1308
      </td>
1309
     </tbody>
1310
   </table>
1311

    
1312
  <p align="left">
1313
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetContactAddress" target="guide">DATA SET CONTACT ADDRESS</a>
1314
  </p>
1315
  <table border="0" cellspacing="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1316
    <tr> 
1317
      <td valign="TOP" colspan="3">
1318
        <input type="CHECKBOX" name="useOrigAddress" [%useOrigAddress%]>
1319
        Use the same address as DATA SET ORIGINATOR above (If you check this box, 
1320
        you don't need to fill in the address fields below).</td>
1321
    </tr>
1322
    <tr> 
1323
      <td valign="TOP" colspan="8"> 
1324
        <p>
1325
          <input type="TEXT" name="origNamefirstContact" value="[%origNamefirstContact%]" size="40">
1326
          <b><font color="#ff0000">*</font>First Name</b></p>
1327
        <p>
1328
          <input type="TEXT" name="origNamelastContact" value="[%origNamelastContact%]" size="40">
1329
          <b><font color="#ff0000">*</font>Last Name</b></p>
1330
        <p>
1331
          <input type="TEXT" name="origNameOrgContact" value="[%origNameOrgContact%]" size="60">
1332
          <b>Organization Name</b></p>
1333
        <p><b>Originator Address Information (for Individual or 
1334
          Organization):</b></p>
1335
        <p>
1336
          <input type="TEXT" name="origEmailContact" value="[%origEmailContact%]">
1337
          <b>E-Mail</b></p>
1338
        <p>
1339
          <input type="TEXT" name="origPhoneContact" value="[%origPhoneContact%]">
1340
          <b>Phone</b></p>
1341
        <p>
1342
          <input type="TEXT" name="origFAXContact" value="[%origFAXContact%]">
1343
          <b>FAX</b></p>
1344
        <p><b>Delivery information (number, street, unit, etc., 
1345
          comma-separated)</b></p>
1346
        <p>
1347
          <textarea rows="5" cols="60" name="origDeliveryContact">[%origDeliveryContact%]</textarea></p>
1348
        <p>
1349
          <input type="TEXT" name="origCityContact" value="[%origCityContact%]" size="50">
1350
          <b>City</b></p>
1351
        <p> 
1352
          <select name="origStateContact">
1353
	    [% IF form == 're_entry' %]	
1354
            	<option>[%origStateContact%]</option>
1355
	    [% ELSE %]
1356
                <option>Select state here.</option>
1357
            [% END %]
1358
	        <option>Alabama</option>
1359
            <option>Alaska</option>
1360
            <option>American Samoa</option>
1361
            <option>Arizona</option>
1362
            <option>Arkansas</option>
1363
            <option>California</option>
1364
            <option>Colorado</option>
1365
            <option>Connecticut</option>
1366
            <option>Delaware</option>
1367
            <option>District of Columbia</option>
1368
            <option>Federated States of Micronesia</option>
1369
            <option>Florida</option>
1370
            <option>Georgia</option>
1371
            <option>Guam</option>
1372
            <option>Hawaii</option>
1373
            <option>Idaho</option>
1374
            <option>Illinois</option>
1375
            <option>Indiana</option>
1376
            <option>Iowa</option>
1377
            <option>Kansas</option>
1378
            <option>Kentucky</option>
1379
            <option>Louisiana</option>
1380
            <option>Maine</option>
1381
            <option>Marshall Islands</option>
1382
            <option>Maryland</option>
1383
            <option>Massachusetts</option>
1384
            <option>Michigan</option>
1385
            <option>Minnesota</option>
1386
            <option>Mississippi</option>
1387
            <option>Missouri</option>
1388
            <option>Montana</option>
1389
            <option>Nebraska</option>
1390
            <option>Nevada</option>
1391
            <option>New Hampshire</option>
1392
            <option>New Jersey</option>
1393
            <option>New Mexico</option>
1394
            <option>New York</option>
1395
            <option>North Carolina</option>
1396
            <option>North Dakota</option>
1397
            <option>Northern Mariana Islands</option>
1398
            <option>Ohio</option>
1399
            <option>Oklahoma</option>
1400
            <option>Oregon</option>
1401
            <option>Palau</option>
1402
            <option>Pennsylvania</option>
1403
            <option>Puerto Rico</option>
1404
            <option>Rhode Island</option>
1405
            <option>South Carolina</option>
1406
            <option>South Dakota</option>
1407
            <option>Tennessee</option>
1408
            <option>Texas</option>
1409
            <option>Utah</option>
1410
            <option>Vermont</option>
1411
            <option>Virgin Islands</option>
1412
            <option>Virginia</option>
1413
            <option>Washington</option>
1414
            <option>West Virginia</option>
1415
            <option>Wisconsin</option>
1416
            <option>Wyoming</option>
1417
          </select>
1418
          <b>State</font></b>&nbsp;&nbsp;&nbsp;
1419
          <input type="TEXT" name="origStateOtherContact" value="[%origStateOtherContact%]">
1420
          <b>Other State or Province</b>
1421
          </p>
1422
        <p>
1423
          <input type="TEXT" name="origZIPContact" size="10" value="[%origZIPContact%]">
1424
          <b>ZIP</b></p>
1425
        <p>
1426
          <input type="TEXT" name="origCountryContact" value="[%origCountryContact%]">
1427
          <b>Country</b></p>
1428
      </td>
1429
    </tr>
1430
  </table>
1431

    
1432
  <p align="left">
1433
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DistributionIinformation" target="guide">DISTRIBUTION INFORMATION</a>
1434
  </p>
1435
  <table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1436
    <tr> 
1437
      <td width="50%" valign="TOP"> 
1438
        <p align="left"><font size="-1"> 
1439
          <input type="TEXT" name="identifier" value="[%identifier%]" size="40">
1440
  <b><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Site-specificCode"
1441
   target="guide">Dataset Name or Identifier (important)</a> </b></font></p>
1442

    
1443
        <p><font size="-1"><b><font color="#ff0000">*</font>Data Medium:</b></font></p>
1444
        <p> <font size="-1">
1445
          <select name="dataMedium">
1446
	    [% IF form == 're_entry' %]	
1447
	    	<option selected>[%dataMedium%]</option>
1448
	    [% ELSE %]
1449
                <option>Select type of medium here.</option>
1450
            [% END %]
1451
            <option>digital</option>
1452
            <option>hardcopy</option>
1453
            <option>other</option>
1454
          </select>
1455
          </font></p>
1456
        <p><font size="-1"><b>If you selected "other" for Data Medium, enter detail 
1457
          below</b></font></p>
1458
        <p><font size="-1"> 
1459
          <input type="TEXT" name="dataMediumOther" value="[%dataMediumOther%]" size="40">
1460
          </font></p>
1461
      </td>
1462
    </tr>
1463
    <tr> 
1464
      <td width="50%" valign="TOP"> 
1465
        <p> <font size="-1"><b><font color="#ff0000">*</font>Use Constraints:</b></font> 
1466
        </p>
1467
        <p> <font size="-1">
1468
          <select name="useConstraints">
1469
	    [% IF form == 're_entry' %]	
1470
	        <option selected>[%useConstraints%]</option>
1471
	    [% ELSE %]
1472
                <option>Select restrictions here.</option>
1473
	    [% END %]
1474
            <option>no restrictions</option>
1475
            <option>obtain permission from originator(s)</option>
1476
            <option>other</option>
1477
          </select>
1478
          </font></p>
1479
        <p><font size="-1"><b>If you selected "other" for Use Constraints, enter 
1480
          detail below.</b></font></p>
1481
        <p><font size="-1"> 
1482
          <input type="TEXT" name="useConstraintsOther" value="[%useConstraintsOther%]" size="40">
1483
          </font></p>
1484
      </td>
1485
    </tr>
1486
    <tr> 
1487
      <td> 
1488
        <p align="left"><font size="-1"> 
1489
          <input type="TEXT" name="url" value="[%url%]" size="50">
1490
          <b>URL (for location of data set or of more metadata)</b></font></p>
1491

    
1492
        <p align="left"><font size="-1"><b>
1493
  <a
1494
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalInformation"
1495
   target="guide">Additional Information/Remarks:</a>	
1496
	</b></font></p>
1497
        <p align="left"><font size="-1"> 
1498
          <textarea rows="5" cols="60" name="addComments">[%addComments%]</textarea>
1499
          </font></p>
1500
      </td>
1501
    </tr>
1502
  </table>
1503

    
1504
  <div align="center"> 
1505
    <table width="760" border="0" cellpadding="9" align="left" bgcolor="#C6d6e7" cellspacing="0">
1506
      <tr> 
1507
        <td width="760"> 
1508
          <div align="left"> <font color="#FF0000" size="-1">NOTE: You must submit 
1509
            your data in order for these to be entered in the Data Registry!</font> 
1510
            <p> 
1511
              <input type="SUBMIT" value="Submit Entry" name="SUBMIT">
1512
              <input type="RESET" name="RESET">
1513
            </p>
1514
          </div>
1515
        </td>
1516
      </tr>
1517
    </table>
1518
    <p>&nbsp;</p>
1519
    <div align="left"> </div>
1520
    <p align="left"> 
1521
    <p align="left">&nbsp; </p>
1522
    <p align="left">&nbsp; </p>
1523
  </div>
1524
</form>
1525
<p>&nbsp;</p>
1526
<p>&nbsp;</p>
1527

    
1528
[% INCLUDE "genericFooter.tmpl" %]
(3-3/7)