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

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

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

    
1246
     </td>
1247
     </tr>
1248
     </tbody>
1249
   </table>
1250
  [% END %]
1251

    
1252
  [% IF cfg == 'nceas' %]
1253
  <p align="left">
1254
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Methods" target="guide">METHODS</a>
1255
   </p>
1256
  <table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1257
    <tbody>
1258
    <tr> 
1259
      <td valign="top" colspan="3"> 
1260
        <p class="label">Data Collection Methods</p>
1261
      </td>
1262
    </tr>
1263
    <tr> 
1264
      <td valign="top"> 
1265
        <p>
1266
          <input type="text" name="methodTitle" value="[%methodTitle%]" size="40">
1267
          <span class="label">Title of Method</span>
1268
        </p>
1269
        <p>
1270
          <span class="label">Method Description</span>
1271
        [% IF methodPara.size < 1 %]
1272
          <br>
1273
          <textarea rows="5" cols="80" name="methodPara"></textarea>
1274
        [% END %]
1275
        [% FOREACH para = methodPara %]
1276
          <br>
1277
          <textarea rows="5" cols="80" name="methodPara">[% para %]</textarea>
1278
        [% END %]
1279
        </p>
1280
        <p>
1281
          <input type="button" value="Add paragraph" id="addparabutton1"
1282
                 onClick="addParagraph()">
1283
        </p>
1284
      </td>
1285
     </tbody>
1286
   </table>
1287
  [% END %]
1288

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

    
1411
  <p align="left">
1412
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DistributionIinformation" target="guide">DISTRIBUTION INFORMATION</a>
1413
  </p>
1414
  <table cellspacing="0" border="0" cellpadding="9" width="760"
1415
bgcolor="#c6d6e7">
1416
    <tr> 
1417
      <td width="50%" valign="TOP"> 
1418

    
1419

    
1420
        <p align="left"><font size="-1"> 
1421
          <input type="TEXT" name="identifier" value="[%identifier%]" size="40">
1422
  <b><a
1423
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Site-specificCode"
1424
   target="guide">Dataset Name or Identifier (important)</a> </b></font></p>
1425

    
1426
        <p><font size="-1"><b><font color="#ff0000">*</font>Data Medium:</b></font></p>
1427
        <p> <font size="-1">
1428
          <select name="dataMedium">
1429
	    [% IF form == 're_entry' %]	
1430
	    	<option selected>[%dataMedium%]</option>
1431
	    [% ELSE %]
1432
                <option>Select type of medium here.</option>
1433
            [% END %]
1434
            <option>digital</option>
1435
            <option>hardcopy</option>
1436
            <option>other</option>
1437
          </select>
1438
          </font></p>
1439
        <p><font size="-1"><b>If you selected "other" for Data Medium, enter detail 
1440
          below</b></font></p>
1441
        <p><font size="-1"> 
1442
          <input type="TEXT" name="dataMediumOther" value="[%dataMediumOther%]" size="40">
1443
          </font></p>
1444
      </td>
1445
    </tr>
1446
    <tr> 
1447
      <td width="50%" valign="TOP"> 
1448
        <p> <font size="-1"><b><font color="#ff0000">*</font>Use Constraints:</b></font> 
1449
        </p>
1450
        <p> <font size="-1">
1451
          <select name="useConstraints">
1452
	    [% IF form == 're_entry' %]	
1453
	        <option selected>[%useConstraints%]</option>
1454
	    [% ELSE %]
1455
                <option>Select restrictions here.</option>
1456
	    [% END %]
1457
            <option>no restrictions</option>
1458
            <option>obtain permission from originator(s)</option>
1459
            <option>other</option>
1460
          </select>
1461
          </font></p>
1462
        <p><font size="-1"><b>If you selected "other" for Use Constraints, enter 
1463
          detail below.</b></font></p>
1464
        <p><font size="-1"> 
1465
          <input type="TEXT" name="useConstraintsOther" value="[%useConstraintsOther%]" size="40">
1466
          </font></p>
1467
      </td>
1468
    </tr>
1469
    <tr> 
1470
      <td> 
1471
        <p align="left"><font size="-1"> 
1472
          <input type="TEXT" name="url" value="[%url%]" size="50">
1473
          <b>URL (for location of data set or of more metadata)</b></font></p>
1474

    
1475
        <p align="left"><font size="-1"><b>
1476
  <a
1477
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalInformation"
1478
   target="guide">Additional Information/Remarks:</a>	
1479
	</b></font></p>
1480
        <p align="left"><font size="-1"> 
1481
          <textarea rows="5" cols="60" name="addComments">[%addComments%]</textarea>
1482
          </font></p>
1483
      </td>
1484
    </tr>
1485
  </table>
1486

    
1487
  <div align="center"> 
1488
    <table width="760" border="0" cellpadding="9" align="left" bgcolor="#C6d6e7" cellspacing="0">
1489
      <tr> 
1490
        <td width="760"> 
1491
          <div align="left"> <font color="#FF0000" size="-1">NOTE: You must submit 
1492
            your data in order for these to be entered in the Data Registry!</font> 
1493
            <p> 
1494
              <input type="SUBMIT" value="Submit Entry" name="SUBMIT">
1495
              <input type="RESET" name="RESET">
1496
            </p>
1497
          </div>
1498
        </td>
1499
      </tr>
1500
    </table>
1501
    <p>&nbsp;</p>
1502
    <div align="left"> </div>
1503
    <p align="left"> 
1504
    <p align="left">&nbsp; </p>
1505
    <p align="left">&nbsp; </p>
1506
  </div>
1507
</form>
1508
<p>&nbsp;</p>
1509
<p>&nbsp;</p>
1510

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