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

    
50
    function addKeyword() {
51
        var keyCountField = document.getElementById("keyCount");
52
        var keyCount = keyCountField.getAttribute("value");
53
        keyCount++;
54
        keyCountField.setAttribute("value", keyCount);
55
        var keyRow = createKeywordRow(keyCount);
56
        var keyRowMarker = document.getElementById("addkeyrow");
57
        var parent = keyRowMarker.parentNode;
58
        parent.insertBefore(keyRow, keyRowMarker);
59
    }
60

    
61
    function createKeywordRow(keyCount) {
62
        var nameField=createTextField("keyword" + keyCount, "40");
63
        var nameCell = document.createElement("td");
64
        nameCell.appendChild(nameField);
65

    
66
        var keyTypeField=createKeyTypeSelect("kwType" + keyCount);
67
        var keyTypeCell = document.createElement("td");
68
        keyTypeCell.appendChild(keyTypeField);
69

    
70
        var keyThField=createKeyThSelect("kwTh" + keyCount);
71
        var keyThCell = document.createElement("td");
72
        keyThCell.appendChild(keyThField); 
73

    
74
        var keyRow = document.createElement("tr");
75
        keyRow.appendChild(nameCell);
76
        keyRow.appendChild(keyTypeCell);
77
        keyRow.appendChild(keyThCell);
78

    
79
        return keyRow;
80
    }
81

    
82
    function createKeyTypeSelect(name) {
83
        var newField=document.createElement("select");
84
        newField.setAttribute("name", name);
85
	var option1=document.createElement("option");
86
	var text1=document.createTextNode("none");
87
	option1.appendChild(text1);
88
	newField.appendChild(option1);
89
	var option2=document.createElement("option");
90
	var text2=document.createTextNode("theme");
91
	option1.appendChild(text2);
92
	newField.appendChild(option2);
93
	var option3=document.createElement("option");
94
	var text3=document.createTextNode("place");
95
	option1.appendChild(text3);
96
	newField.appendChild(option3)
97
	var option4=document.createElement("option");
98
	var text4=document.createTextNode("stratum");
99
	option1.appendChild(text4);
100
	newField.appendChild(option4);
101
	var option5=document.createElement("option");
102
	var text5=document.createTextNode("temporal");
103
	option1.appendChild(text5);
104
	newField.appendChild(option5);
105
	var option6=document.createElement("option");
106
	var text6=document.createTextNode("taxonomic");
107
	option1.appendChild(text6);
108
	newField.appendChild(option6);
109

    
110
	return newField;
111
    }
112

    
113
    function createKeyThSelect(name) {
114
        var newField=document.createElement("select");
115
        newField.setAttribute("name", name);
116
	var option1=document.createElement("option");
117
	var text1=document.createTextNode("none");
118
	option1.appendChild(text1);
119
	newField.appendChild(option1);
120
	var option2=document.createElement("option");
121
	var text2=document.createTextNode("GCMD");
122
	option2.appendChild(text2);
123
	newField.appendChild(option2);
124

    
125
	return newField;
126
    }
127

    
128

    
129
  </script>
130

    
131
[% IF cfg == 'nrs' %]
132
  [% lsite = 'reserve' %]
133
  [% usite = 'Reserve' %]
134
  [% showSiteList = 'true' %]
135
[% ELSIF cfg == 'obfs' %]
136
  [% lsite = 'station' %]
137
  [% usite = 'Station' %]
138
  [% showSiteList = 'true' %]
139
[% ELSIF cfg == 'nceas' %]
140
  [% lsite = 'station' %]
141
  [% usite = 'Station' %]
142
  [% showSiteList = 'false' %]
143
[% ELSE %]
144
  [% lsite = 'station' %]
145
  [% usite = 'Station' %]
146
  [% showSiteList = 'false' %]
147
[% END %]
148

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

    
642
  <table width="760" border="0" cellspacing="0" cellpadding="9"
643
bgcolor="#c6d6e7">
644
    <tr> 
645
      <td> 
646
        <h2 align="left"><b><font size="-1" color="#ff0000">*</font><font size="-1">Data 
647
          Set Abstract</font></b></h2>
648
        <p align="left"> 
649
          <textarea rows="5" cols="80" name="abstract">[%abstract%]</textarea>
650
        </p>
651
      </td>
652
    </tr>
653
  </table>
654
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
655
       <a 
656
        href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#KeywordInformation"
657
        target="guide">KEYWORD INFORMATION</a>
658
	</font></b></font> 
659
    <font size="-1"><b><br>
660
    </b>(for example keywords, have a look at the keyword thesaurus for the <a href=
661
"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html" target="nasa"><font color=
662
"008000">NASA Global Change Master Directory (GCMD))</font></a></font></p>
663
 [% numKey = 1 %]
664
 [% IF keyCount > 0 %]
665
   [% numKey = keyCount %]
666
 [% END %]
667
 <input type="hidden" name="keyCount" value="[%numKey%]" 
668
            id="keyCount">
669
  <table cellspacing="0" border="0" cellpadding="9" width="760"
670
bgcolor="#c6d6e7"> 
671
 <table cellspacing="0" border="0" cellpadding="9" width="760"
672
bgcolor="#c6d6e7">
673
    <tr> 
674
      <td width="34%" valign="TOP"> 
675
        <p><font size="-1"><b>Keyword</b></font></p>
676
      </td>
677
      <td width="18%" valign="TOP"> 
678
        <p><font size="-1"><b>Keyword Type</b></font></p>
679
      </td>
680
      <td width="48%" valign="TOP"> 
681
        <p><font size="-1"><b>Keyword Thesaurus</b></font></p>
682
      </td>
683
    </tr>
684
        [% cnt = 1 %]
685
        [% WHILE cnt <= numKey %]
686
            <tr> 
687
            <td>
688
            [% SET key = "keyword${cnt}" %]
689
            <input name="keyword[%cnt%]" value="[%$key%]" size="40">
690
            </td>
691

    
692
            <td>
693
            [% SET keyT = "kwType${cnt}" %]
694
            <select name="kwType[%cnt%]">
695
	    [% IF form == 're_entry' %]
696
	     	<option selected>[%$keyT%]</option>
697
	    [% END %]
698
	    <option>none</option>
699
            <option>theme</option>
700
            <option>place</option>
701
            <option>stratum</option>
702
            <option>temporal</option>
703
            <option>taxonomic</option>
704
            </select>
705
            </td>
706

    
707
            <td>
708
            [% SET keyTh = "kwTh${cnt}" %]
709
            <select name="kwTh[%cnt%]">
710
	    [% IF form == 're_entry' %]
711
	     	<option selected>[%$keyTh%]</option>
712
	    [% END %]
713
	    <option>none</option>
714
            <option>GCMD</option>
715
            </select>
716
            </td>
717
            </tr>
718
            [% cnt = cnt + 1 %]
719
         [% END %]
720
        <tr id="addkeyrow"> 
721
            <td>
722
                <input type="button" value="Add Keyword" id="addkeybutton1"
723
                    onClick="addKeyword()">
724
            </td>
725
        </tr>
726
  </table>
727
  <br>
728
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
729
  <a
730
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TemporalCoverageOfData"
731
   target="guide">TEMPORAL COVERAGE OF DATA</a>
732
	</font></b></font></p>
733
  <table cellspacing="0" border="0" cellpadding="9" width="760"
734
bgcolor="#c6d6e7">
735
    <tr> 
736
      <td valign="TOP" colspan="3"> 
737
        <p><font size="-1"><b>Beginning Date of Data Set:</b></font></p>
738
      </td>
739
    </tr>
740
    <tr> 
741
      <td width="33%" valign="TOP"> 
742
        <p><font size="-1"> 
743
          <input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4">
744
          <b><font color="#ff0000">*</font>Year (YYYY)</b></font></p>
745
      </td>
746
      <td width="33%" valign="TOP"> 
747
        <p><font size="-1"> 
748
          <input type="TEXT" name="beginningMonth" value="[%beginningMonth%]" size="4" maxlength="2">
749
          <b><font color="#ff0000">*</font>Month(MM)</b></font></p>
750
      </td>
751
      <td width="33%" valign="TOP"> 
752
        <p><font size="-1"> 
753
          <input type="TEXT" name="beginningDay" value="[%beginningDay%]" size="4" maxlength="2">
754
          <b><font color="#ff0000">*</font>Day (DD)</b></font></p>
755
      </td>
756
    </tr>
757
    <tr> 
758
      <td valign="TOP" colspan="3"> 
759
        <p><font size="-1"><b>Ending Date of Data Set (provide no ending date 
760
          at all if your data set is open-ended):</b></font></p>
761
      </td>
762
    </tr>
763
    <tr> 
764
      <td width="33%" valign="TOP"> 
765
        <p><font size="-1"> 
766
          <input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4">
767
          <b>Year (YYYY)</b></font></p>
768
      </td>
769
      <td width="33%" valign="TOP"> 
770
        <p><font size="-1"> 
771
          <input type="TEXT" name="endingMonth" value="[%endingMonth%]" size="4" maxlength="2">
772
          <b>Month(MM)</b></font></p>
773
      </td>
774
      <td width="33%" valign="TOP"> 
775
        <p><font size="-1"> 
776
          <input type="TEXT" name="endingDay" value="[%endingDay%]" size="4" maxlength="2">
777
          <b>Day (DD)</b></font></p>
778
      </td>
779
    </tr>
780
  </table>
781

    
782
  <p align="left">
783
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#SpatialCoverageOfData" target="guide">SPATIAL COVERAGE OF DATA</a>
784
  </p>
785
  <table cellspacing="0" border="0" cellpadding="9" width="760"
786
bgcolor="#c6d6e7">
787
    <tr>
788
    <td valign="top" colspan="4">
789
    <span class="required">*</span><span class="label">Geographic Description</span><br>
790
    Enter a general description of the geographic area in which the data were collected.
791
    This can be a simple place name (e.g., Santa Barbara) or a fuller description.<br>
792
    <textarea rows="3" cols="80" name="geogdesc">[% geogdesc %]</textarea>
793
    </td>
794
    </tr>
795
    <tr> 
796
      <td valign="TOP" colspan="4"> 
797
        <p class="label">Coordinates (in Degrees, Minutes and Seconds; at 
798
          least 1 lat./long. pair is required):</p>
799
      </td>
800
    </tr>
801
    <tr> 
802
      <td valign="TOP" colspan="4"> 
803
        <p>Enter the first lat./long. pair only to indicate 
804
          a point location. Enter both coordinate pairs to indicate a bounding
805
          box. In case of a bounding box, the first coordinate pair is the
806
          northwest corner and the second coordinate pair is the southeast
807
          corner of the bounding box.</p>
808
      </td>
809
    </tr>
810
[% IF showSiteList == 'true' %]
811
    <tr>
812
      <td valign="TOP" colspan="4" class="tablepanel">
813
        <input class="required"
814
        type="CHECKBOX" name="useSiteCoord" [%useSiteCoord%]>
815
        Use [% lsite %] coordinates. (This indicates that the data were
816
        collected at the [% lsite %]. If you check this box, you don't need
817
        to fill in the lat./long. fields below).
818
        </td>
819
    </tr>
820
[% END %]
821
    <tr> 
822
      <td width="18%" valign="TOP"> 
823
        <span class="required">*</span><span class="label">Latitude</span>
824
      </td>
825
      <td width="20%" valign="TOP"> 
826
        &nbsp;North/South
827
      </td>
828
      <td width="20%" valign="TOP"> 
829
        <span class="required">*</span><span class="label">Longitude</span>
830
      </td>
831
      <td width="42%" valign="TOP"> 
832
        &nbsp;West/East
833
      </td>
834
    </tr>
835
    <tr> 
836
      <td width="20%" valign="TOP"> 
837
          <input type="TEXT" name="latDeg1" value="[%latDeg1%]" size="3" maxlength="3">
838
          <input type="TEXT" name="latMin1" value="[%latMin1%]" size="2" maxlength="2">
839
          <input type="TEXT" name="latSec1" value="[%latSec1%]" size="2" maxlength="2">
840
      </td>
841
      <td width="20%" valign="TOP"> 
842
          <select name="hemisphLat1">
843
	    [% IF form == 're_entry' %]
844
	    	<option selected>[%hemisphLat1%]</option>
845
	    [% END %]
846
            <option>N</option>
847
            <option>S</option>
848
          </select>
849
      </td>
850
      <td width="20%" valign="TOP"> 
851
          <input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3">
852
          <input type="TEXT" name="longMin1" value="[%longMin1%]" size="2" maxlength="2">
853
          <input type="TEXT" name="longSec1" value="[%longSec1%]" size="2" maxlength="2">
854
      </td>
855
      <td width="40%" valign="TOP"> 
856
          <select name="hemisphLong1">
857
	    [% IF form == 're_entry' %]
858
	    	<option selected>[%hemisphLong1%]</option>
859
	    [% END %]
860
            <option>W</option>
861
            <option>E</option>
862
          </select>
863
      </td>
864
    </tr>
865
    <tr> 
866
      <td valign="TOP" colspan="4"> 
867
        The second lat./long. pair, if provided, indicates 
868
        the southeast corner of a bounding box.
869
      </td>
870
    </tr>
871
    <tr> 
872
      <td width="18%" valign="TOP"> 
873
        Latitude
874
      </td>
875
      <td width="20%" valign="TOP"> 
876
        &nbsp;North/South
877
      </td>
878
      <td width="20%" valign="TOP"> 
879
        Longitude
880
      </td>
881
      <td width="42%" valign="TOP"> 
882
        West/East
883
      </td>
884
    </tr>
885
    <tr> 
886
      <td width="20%" valign="TOP"> 
887
          <input type="TEXT" name="latDeg2" value="[%latDeg2%]" size="3" maxlength="3">
888
          <input type="TEXT" name="latMin2" value="[%latMin2%]" size="2" maxlength="2">
889
          <input type="TEXT" name="latSec2" value="[%latSec2%]" size="2" maxlength="2">
890
      </td>
891
      <td width="20%" valign="TOP"> 
892
          <select name="hemisphLat2">
893
	    [% IF form == 're_entry' %]	
894
	    	<option selected>[%hemisphLat2%]</option>
895
            [% END %]
896
	    <option>N</option>
897
            <option>S</option>
898
          </select>
899
      </td>
900
      <td width="20%" valign="TOP"> 
901
          <input type="TEXT" name="longDeg2" value="[%longDeg2%]" size="3" maxlength="3">
902
          <input type="TEXT" name="longMin2" value="[%longMin2%]" size="2" maxlength="2">
903
          <input type="TEXT" name="longSec2" value="[%longSec2%]" size="2" maxlength="2">
904
      </td>
905
      <td width="40%" valign="TOP"> 
906
          <select name="hemisphLong2">
907
	    [% IF form == 're_entry' %]
908
	    	<option selected>[%hemisphLong2%]</option>
909
	    [% END %]
910
            <option>W</option>
911
            <option>E</option>
912
          </select>
913
      </td>
914
    </tr>
915
  </table>
916

    
917
  <p align="left">
918
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TaxonomicCoverage" target="guide">TAXONOMIC COVERAGE OF DATA</a>
919
   </p>
920
  <table cellspacing="0" border="0" cellpadding="9" width="760" 
921
    bgcolor="#c6d6e7">
922
    <tbody>
923
    <tr> 
924
        <td colspan="2">
925
        <p class="label">List the taxa associated with this set of data.</p>
926
        <p>The Taxon Rank should indicate the level in the taxonomic
927
        hierarchy (e.g., Phylum or Species) and the Taxonomic Name should 
928
        be the scientific name for the organism at that level 
929
        (e.g., <i>Ursus arctos</i>).</p>
930
        [% numTaxa = 1 %]
931
        [% IF taxaCount > 0 %]
932
            [% numTaxa = taxaCount %]
933
        [% END %]
934
        <input type="hidden" name="taxaCount" value="[%numTaxa%]" 
935
            id="taxaCount">
936
        </td>
937
    </tr>
938

    
939
    <tr>
940
    <td>
941
        <table border="0">
942
        <tbody>
943
        <tr> 
944
            <td><span class="label">Taxon Rank</span></td>
945
            <td><span class="label">Taxon Name</span></td>
946
        </tr>
947
        [% cnt = 1 %]
948
        [% WHILE cnt <= numTaxa %]
949
            <tr> 
950
            <td>
951
            [% SET trn = "taxonRankName${cnt}" %]
952
            <input name="taxonRankName[%cnt%]" value="[% $trn %]" size="25">
953
            </td>
954
            <td>
955
            [% SET trv = "taxonRankValue${cnt}" %]
956
            <input name="taxonRankValue[%cnt%]" value="[% $trv %]" size="25">
957
            </td>
958
            </tr>
959
            [% cnt = cnt + 1 %]
960
         [% END %]
961
        <tr id="addtaxarow"> 
962
            <td>
963
                <input type="button" value="Add taxon" id="addtaxabutton1"
964
                    onClick="addTaxon()">
965
            </td>
966
        </tr>
967
        </tbody>
968
        </table>
969

    
970
     </td>
971
     </tr>
972
     <tr> 
973
        <td colspan="2">
974
        <p class="label">Taxonomic Authority</p>
975
        <p>List the source(s) used for identifying and naming taxa in this
976
        list.  These sources should provide comprehensive information about
977
        the taxonomic concepts indicated by the names listed.</p>
978
        <textarea rows="5" cols="80" name="taxaAuth">[% taxaAuth %]</textarea>
979
        </td>
980
     </tr>
981
     </tbody>
982
   </table>
983

    
984
  <p align="left">
985
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Methods" target="guide">METHODS</a>
986
   </p>
987
  <table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
988
    <tbody>
989
    <tr> 
990
      <td valign="top" colspan="3"> 
991
        <p class="label">Data Collection Methods</p>
992
      </td>
993
    </tr>
994
    <tr> 
995
      <td valign="top"> 
996
        <p>
997
          <input type="text" name="methodTitle" value="[%methodTitle%]" size="40">
998
          <span class="label">Title of Method</span>
999
        </p>
1000
        <p>
1001
          <span class="label">Method Description</span>
1002
        [% IF methodPara.size < 1 %]
1003
          <br>
1004
          <textarea rows="5" cols="80" name="methodPara"></textarea>
1005
        [% END %]
1006
        [% FOREACH para = methodPara %]
1007
          <br>
1008
          <textarea rows="5" cols="80" name="methodPara">[% para %]</textarea>
1009
        [% END %]
1010
        </p>
1011
        <p>
1012
          <input type="button" value="Add paragraph" id="addparabutton1"
1013
                 onClick="addParagraph()">
1014
        </p><br>
1015
        <p class="label">Description of Study Extent</p>
1016
        <p>Describe the temporal, spatial and taxonomic extent of the study,
1017
        supplementing the information on coverage provided above.  For example,
1018
        if the temporal coverage of the data is 1990-2000, you might provide 
1019
        details about any years that were missed or the months in which sampling
1020
        occurred.</p>
1021
        <p>
1022
          <textarea rows="5" cols="80" name="studyExtentDescription">[% studyExtentDescription %]</textarea>
1023
        </p><br>
1024
        <p class="label">Sampling Description</p>
1025
        <p>Describe the sampling design of the study.  For example, you might 
1026
        describe the way in which treatments were assigned to sampling units.
1027
        </p>
1028
        <p>
1029
          <textarea rows="5" cols="80" name="samplingDescription">[% samplingDescription %]</textarea>
1030
        </p>
1031
      </td>
1032
     </tbody>
1033
   </table>
1034

    
1035
  <p align="left">
1036
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetContactAddress" target="guide">DATA SET CONTACT</a>
1037
  </p>
1038
  <table border="0" cellspacing="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1039
    <tr> 
1040
      <td valign="TOP" colspan="3">
1041
        <input type="CHECKBOX" name="useOrigAddress" [%useOrigAddress%]>
1042
        Use the same name and address as the PRINCIPAL DATA SET OWNER above (If you check this box, 
1043
        you don't need to fill in the address fields below).</td>
1044
    </tr>
1045
    <tr> 
1046
      <td valign="TOP" colspan="8"> 
1047
        <p>
1048
          <input type="TEXT" name="origNamefirstContact" value="[%origNamefirstContact%]" size="40">
1049
          <b><font color="#ff0000">*</font>First Name</b></p>
1050
        <p>
1051
          <input type="TEXT" name="origNamelastContact" value="[%origNamelastContact%]" size="40">
1052
          <b><font color="#ff0000">*</font>Last Name</b></p>
1053
        <p>
1054
          <input type="TEXT" name="origNameOrgContact" value="[%origNameOrgContact%]" size="60">
1055
          <b>Organization Name</b></p>
1056
        <p>
1057
          <input type="TEXT" name="origEmailContact" value="[%origEmailContact%]">
1058
          <b>E-Mail</b></p>
1059
        <p>
1060
          <input type="TEXT" name="origPhoneContact" value="[%origPhoneContact%]">
1061
          <b>Phone</b></p>
1062
        <p>
1063
          <input type="TEXT" name="origFAXContact" value="[%origFAXContact%]">
1064
          <b>FAX</b></p>
1065
        <p><b>Street information (number, street, unit, etc., 
1066
          comma-separated)</b></p>
1067
        <p>
1068
          <textarea rows="5" cols="60" name="origDeliveryContact">[%origDeliveryContact%]</textarea></p>
1069
        <p>
1070
          <input type="TEXT" name="origCityContact" value="[%origCityContact%]" size="50">
1071
          <b>City</b></p>
1072
        <p> 
1073
          <select name="origStateContact">
1074
	    [% IF form == 're_entry' %]	
1075
            	<option>[%origStateContact%]</option>
1076
	    [% ELSE %]
1077
                <option>Select state here.</option>
1078
            [% END %]
1079
	        <option>Alabama</option>
1080
            <option>Alaska</option>
1081
            <option>American Samoa</option>
1082
            <option>Arizona</option>
1083
            <option>Arkansas</option>
1084
            <option>California</option>
1085
            <option>Colorado</option>
1086
            <option>Connecticut</option>
1087
            <option>Delaware</option>
1088
            <option>District of Columbia</option>
1089
            <option>Federated States of Micronesia</option>
1090
            <option>Florida</option>
1091
            <option>Georgia</option>
1092
            <option>Guam</option>
1093
            <option>Hawaii</option>
1094
            <option>Idaho</option>
1095
            <option>Illinois</option>
1096
            <option>Indiana</option>
1097
            <option>Iowa</option>
1098
            <option>Kansas</option>
1099
            <option>Kentucky</option>
1100
            <option>Louisiana</option>
1101
            <option>Maine</option>
1102
            <option>Marshall Islands</option>
1103
            <option>Maryland</option>
1104
            <option>Massachusetts</option>
1105
            <option>Michigan</option>
1106
            <option>Minnesota</option>
1107
            <option>Mississippi</option>
1108
            <option>Missouri</option>
1109
            <option>Montana</option>
1110
            <option>Nebraska</option>
1111
            <option>Nevada</option>
1112
            <option>New Hampshire</option>
1113
            <option>New Jersey</option>
1114
            <option>New Mexico</option>
1115
            <option>New York</option>
1116
            <option>North Carolina</option>
1117
            <option>North Dakota</option>
1118
            <option>Northern Mariana Islands</option>
1119
            <option>Ohio</option>
1120
            <option>Oklahoma</option>
1121
            <option>Oregon</option>
1122
            <option>Palau</option>
1123
            <option>Pennsylvania</option>
1124
            <option>Puerto Rico</option>
1125
            <option>Rhode Island</option>
1126
            <option>South Carolina</option>
1127
            <option>South Dakota</option>
1128
            <option>Tennessee</option>
1129
            <option>Texas</option>
1130
            <option>Utah</option>
1131
            <option>Vermont</option>
1132
            <option>Virgin Islands</option>
1133
            <option>Virginia</option>
1134
            <option>Washington</option>
1135
            <option>West Virginia</option>
1136
            <option>Wisconsin</option>
1137
            <option>Wyoming</option>
1138
          </select>
1139
          <b>State</font></b>&nbsp;&nbsp;&nbsp;
1140
          <input type="TEXT" name="origStateOtherContact" value="[%origStateOtherContact%]">
1141
          <b>Other State or Province</b>
1142
          </p>
1143
        <p>
1144
          <input type="TEXT" name="origZIPContact" size="10" value="[%origZIPContact%]">
1145
          <b>ZIP</b></p>
1146
        <p>
1147
          <input type="TEXT" name="origCountryContact" value="[%origCountryContact%]">
1148
          <b>Country</b></p>
1149
      </td>
1150
    </tr>
1151
  </table>
1152

    
1153
  <p align="left">
1154
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DistributionIinformation" target="guide">DISTRIBUTION INFORMATION</a>
1155
  </p>
1156
  <table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1157
    <tr> 
1158
      <td width="50%" valign="TOP"> 
1159
        <p align="left"><font size="-1"> 
1160
          <input type="TEXT" name="identifier" value="[%identifier%]" size="40">
1161
  <b><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Site-specificCode"
1162
   target="guide">Dataset Name or Identifier (important)</a> </b></font></p>
1163

    
1164
        <p><font size="-1"><b><font color="#ff0000">*</font>Data Medium:</b></font></p>
1165
        <p> <font size="-1">
1166
          <select name="dataMedium">
1167
	    [% IF form == 're_entry' %]	
1168
	    	<option selected>[%dataMedium%]</option>
1169
	    [% ELSE %]
1170
                <option>Select type of medium here.</option>
1171
            [% END %]
1172
            <option>digital</option>
1173
            <option>hardcopy</option>
1174
            <option>other</option>
1175
          </select>
1176
          </font></p>
1177
        <p><font size="-1"><b>If you selected "other" for Data Medium, enter detail 
1178
          below</b></font></p>
1179
        <p><font size="-1"> 
1180
          <input type="TEXT" name="dataMediumOther" value="[%dataMediumOther%]" size="40">
1181
          </font></p>
1182
      </td>
1183
    </tr>
1184
    <tr> 
1185
      <td width="50%" valign="TOP"> 
1186
        <p> <font size="-1"><b><font color="#ff0000">*</font>Use Constraints:</b></font> 
1187
        </p>
1188
        <p> <font size="-1">
1189
          <select name="useConstraints">
1190
	    [% IF form == 're_entry' %]	
1191
	        <option selected>[%useConstraints%]</option>
1192
	    [% ELSE %]
1193
                <option>Select restrictions here.</option>
1194
	    [% END %]
1195
            <option>no restrictions</option>
1196
            <option>obtain permission from originator(s)</option>
1197
            <option>other</option>
1198
          </select>
1199
          </font></p>
1200
        <p><font size="-1"><b>If you selected "other" for Use Constraints, enter 
1201
          detail below.</b></font></p>
1202
        <p><font size="-1"> 
1203
          <input type="TEXT" name="useConstraintsOther" value="[%useConstraintsOther%]" size="40">
1204
          </font></p>
1205
      </td>
1206
    </tr>
1207
    <tr> 
1208
      <td> 
1209
        <p align="left"><font size="-1"> 
1210
          <input type="TEXT" name="url" value="[%url%]" size="50">
1211
          <b>URL (for location of data set or of more metadata)</b></font></p>
1212

    
1213
        <p align="left"><font size="-1"><b>
1214
  <a
1215
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalInformation"
1216
   target="guide">Additional Information/Remarks:</a>	
1217
	</b></font></p>
1218
        <p align="left"><font size="-1"> 
1219
          <textarea rows="5" cols="60" name="addComments">[%addComments%]</textarea>
1220
          </font></p>
1221
      </td>
1222
    </tr>
1223
  </table>
1224

    
1225
  <div align="center"> 
1226
    <table width="760" border="0" cellpadding="9" align="left" bgcolor="#C6d6e7" cellspacing="0">
1227
      <tr> 
1228
        <td width="760"> 
1229
          <div align="left"> <font color="#FF0000" size="-1">NOTE: You must submit 
1230
            your data in order for these to be entered in the Data Registry!</font> 
1231
            <p> 
1232
              <input type="SUBMIT" value="Submit Entry" name="SUBMIT">
1233
              <input type="RESET" name="RESET">
1234
            </p>
1235
          </div>
1236
        </td>
1237
      </tr>
1238
    </table>
1239
    <p>&nbsp;</p>
1240
    <div align="left"> </div>
1241
    <p align="left"> 
1242
    <p align="left">&nbsp; </p>
1243
    <p align="left">&nbsp; </p>
1244
  </div>
1245
</form>
1246
<p>&nbsp;</p>
1247
<p>&nbsp;</p>
1248

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