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

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

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

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

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

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

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

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

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

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

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

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

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