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
	option2.appendChild(text2);
92
	newField.appendChild(option2);
93
	var option3=document.createElement("option");
94
	var text3=document.createTextNode("place");
95
	option3.appendChild(text3);
96
	newField.appendChild(option3)
97
	var option4=document.createElement("option");
98
	var text4=document.createTextNode("stratum");
99
	option4.appendChild(text4);
100
	newField.appendChild(option4);
101
	var option5=document.createElement("option");
102
	var text5=document.createTextNode("temporal");
103
	option5.appendChild(text5);
104
	newField.appendChild(option5);
105
	var option6=document.createElement("option");
106
	var text6=document.createTextNode("taxonomic");
107
	option6.appendChild(text6);
108
	newField.appendChild(option6);
109

    
110
	return newField;
111
    }
112

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

    
125
	return newField;
126
    }
127

    
128

    
129
    function copyContact(){
130
        var checkBox = document.getElementById("copyCheckBox");
131
        if(checkBox.checked == true)
132
	{
133
	   var cnf=document.getElementById("contactNameFirst");
134
	   var onf=document.getElementById("origNameFirst");
135
	   cnf.value = onf.value;
136

    
137
	   var cnl=document.getElementById("contactNameLast");
138
	   var onl=document.getElementById("origNameLast");
139
	   cnl.value = onl.value;
140

    
141
	   var cno=document.getElementById("contactNameOrg");
142
	   var ono=document.getElementById("origNameOrg");
143
	   cno.value = ono.value;
144

    
145
	   var ce=document.getElementById("contactEmail");
146
	   var oe=document.getElementById("origEmail");
147
	   ce.value = oe.value;
148

    
149
	   var cp=document.getElementById("contactPhone");
150
	   var op=document.getElementById("origPhone");
151
	   cp.value = op.value;
152

    
153
	   var cf=document.getElementById("contactFAX");
154
	   var of=document.getElementById("origFAX");
155
	   cf.value = of.value;
156

    
157
	   var cd=document.getElementById("contactDelivery");
158
	   var od=document.getElementById("origDelivery");
159
	   cd.value = od.value;
160

    
161
	   var cc=document.getElementById("contactCity");
162
	   var oc=document.getElementById("origCity");
163
	   cc.value = oc.value;
164

    
165
	   var cs=document.getElementById("contactState");
166
	   var os=document.getElementById("origState");
167

    
168
	   var cso=document.getElementById("contactStateOther");
169
	   var oso=document.getElementById("origStateOther");
170
	   cso.value = oso.value;
171

    
172
	   var cz=document.getElementById("contactZip");
173
	   var oz=document.getElementById("origZip");
174
	   cz.value = oz.value;
175

    
176
	   var cC=document.getElementById("contactCountry");
177
	   var oC=document.getElementById("origCountry");
178
	   cC.value = oC.value;
179

    
180
	} else {
181
	   var cnf=document.getElementById("contactNameFirst");
182
	   cnf.value = "";
183

    
184
	   var cnl=document.getElementById("contactNameLast");
185
	   cnl.value = "";
186

    
187
	   var cno=document.getElementById("contactNameOrg");
188
	   cno.value = "";
189

    
190
	   var ce=document.getElementById("contactEmail");
191
	   ce.value = "";
192

    
193
	   var cp=document.getElementById("contactPhone");
194
	   cp.value = "";
195

    
196
	   var cf=document.getElementById("contactFAX");
197
	   cf.value = "";
198

    
199
	   var cd=document.getElementById("contactDelivery");
200
	   cd.value = "";
201

    
202
	   var cc=document.getElementById("contactCity");
203
	   cc.value = "";
204

    
205
	   var cso=document.getElementById("contactStateOther");
206
	   cso.value = "";
207

    
208
	   var cz=document.getElementById("contactZip");
209
	   cz.value = "";
210

    
211
	   var cC=document.getElementById("contactCountry");
212
	   cC.value = "";
213
	}
214
    }
215

    
216
  </script>
217

    
218
[% IF cfg == 'nrs' %]
219
  [% lsite = 'reserve' %]
220
  [% usite = 'Reserve' %]
221
  [% showSiteList = 'true' %]
222
[% ELSIF cfg == 'obfs' %]
223
  [% lsite = 'station' %]
224
  [% usite = 'Station' %]
225
  [% showSiteList = 'true' %]
226
[% ELSIF cfg == 'specnet' %]
227
  [% lsite = 'station' %]
228
  [% usite = 'Station' %]
229
  [% showSiteList = 'true' %]
230
[% ELSIF cfg == 'nceas' %]
231
  [% lsite = 'station' %]
232
  [% usite = 'Station' %]
233
  [% showSiteList = 'false' %]
234
[% ELSE %]
235
  [% lsite = 'station' %]
236
  [% usite = 'Station' %]
237
  [% showSiteList = 'false' %]
238
[% END %]
239

    
240
      [% IF form != 're_entry' %]	
241
      <p>Use this page to submit a <b>new</b> data set description for
242
         inclusion in the registry.</p>
243
      <p>&nbsp;</p>
244
      <p>Please have a look at the 
245
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide" target="guide">
246
        <b>Guide on How to Complete Data Registry Entries</b></a> 
247
        before you start filling in this catalog form. Also, use your browser's 
248
        Reload/Refresh function to make sure you see the latest version of this 
249
        page.
250
      </p>
251
      <p>&nbsp;</p>
252
      <p align="left">Fields including a red asterisk 
253
      (<span class="required">*</span>) are required.
254
      </p>
255
      <p>&nbsp;</p>
256
      <p align="left">If you have any questions, comments or problems 
257
      regarding this form, please contact [% adminname %] at 
258
      <a href="mailto:[% recipient %]"><i>[% recipient %]</i></a>.      
259
      </p>
260
      [% ELSE %]
261
      <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>
262
      <p>&nbsp;</p>
263
      <p>Please have a look at the 
264
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide" target="guide">
265
        <b>Guide on How to Complete Data Registry Entries</b></a> 
266
        for help with filling of this catalog form.
267
      </p>
268
      <p>&nbsp;</p>
269
      <p align="left">Fields including a red asterisk 
270
      (<span class="required">*</span>) are required.
271
      </p>
272
      <p>&nbsp;</p>
273
      <p align="left">If you have any questions, comments or problems 
274
      regarding this form, please contact [% adminname %] at 
275
      <a href="mailto:[% recipient %]"><i>[% recipient %]</i></a>.      
276
      </p>
277
      [% END %]
278
  <!--
279
  </td></tr>
280
</table>
281
-->
282
<p>&nbsp;</p>
283
<form action="@cgi-prefix@/register-dataset.cgi" method="post">
284
  <input type="hidden" name="cfg" value="[% cfg %]">
285
  <input type="hidden" name="docid" value="[% docid %]">
286
  <input type="hidden" name="stage" value="insert">
287
  <p align="left">
288
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#BasicInformation" target="guide">BASIC INFORMATION </a>
289
  </p>
290
  <table width="760" border="0" cellspacing="0" cellpadding="9"
291
bgcolor="#c6d6e7">
292
    <tr> 
293
      <td> 
294
        <p align="left">
295
          <span class="required">*</span><span class="label">Name of Person completing this form</span>
296
	    </p>
297
        <p>
298
          <input type="TEXT" name="providerGivenName" size="40" value="[%providerGivenName%]">
299
          <span class="required">*</span><span class="label">First Name</span></p>
300
        <p>
301
          <input type="TEXT" name="providerSurName" size="40" value="[%providerSurName%]">
302
          <span class="required">*</span><span class="label">Last Name</span></p>
303
[% IF showSiteList == 'true' %]
304
        <p align="left">
305
          <select name="site">
306
	    [% IF form == 're_entry' %]
307
	    	<option selected>[%site%]</option>
308
	    [% ELSE %]
309
	        <option>Select your [% lsite %] here.</option>
310
	    [% END %]
311
            [% FOREACH site = siteList %]
312
              <option>[% site %]</option>
313
            [% END %]
314
          </select>
315
          <span class="required">*</span><span class="label">[% usite %] Name</span></p>
316
[% END %]
317
        <p align="left">&nbsp;</p>
318
        <p align="left">
319
          <input type="TEXT" name="title" value="[%title%]" size="53">
320
          <span class="required">*</span><span class="label">Data Set Title</span></p>
321
[% IF cfg == 'nceas' %]
322
        <p align="left"> 
323
          <span class="required">*</span><span class="label">NCEAS Project(s):</span></p>
324
          <select name="wg" multiple="multiple" size="5">
325
            [% FOREACH project = projects %]
326
              [% SET pname = $project.3 %]
327
              [% IF pname.length > 50 %]
328
                [% SET sname = $project.4 %]
329
              [% END %]
330
              [% SET label = "NCEAS ${project.0}: ${project.1}: $project.4" %]
331
              [% SET value = "NCEAS ${project.0}: ${project.1}: $project.3" %]
332
              [% SET sel = '' %]
333
              [% FOREACH group = wg %]
334
                  [% IF group == value %]
335
                      [% SET sel = 'selected="selected"' %]
336
                  [% END %]
337
              [% END %]
338
              <option value="[% value %]" [% sel %]>[% label %]</option>
339
            [% END %]
340
          </select>
341
[% END %]
342
[% IF cfg == 'knb' %]
343
        <p align="left">
344
          <input type="TEXT" name="site" size="40" value="[%site%]">
345
          <span class="required">*</span><span class="label">Organization Name</span>
346
        </p>
347
[% END %]
348
      </td>
349
    </tr>
350
  </table>
351
  <p align="left">
352
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetOriginator" target="guide">PRINCIPAL DATA SET OWNER</a>
353
  </p>
354
  <table border="0" cellpadding="9" width="760" bgcolor="#c6d6e7"
355
cellspacing="0">
356
    <tr> 
357
      <td valign="TOP" colspan="3"> 
358
        <p>
359
          <input type="TEXT" name="origNamefirst0" size="40" id="origNameFirst" value="[%origNamefirst0%]">
360
          <span class="required">*</span><span class="label">First Name</span></p>
361
        <p>
362
          <input type="TEXT" name="origNamelast0" size="40" id="origNameLast" value="[%origNamelast0%]">
363
          <span class="required">*</span><span class="label">Last Name</span></p>
364
        <p><font size="-1"> 
365
          <input type="TEXT" name="origNameOrg" size="60" id="origNameOrg" value="[%origNameOrg%]">
366
          <b>Organization Name</b></font></p>
367
        <p><font size="-1"> 
368
          <input type="TEXT" name="origEmail" id="origEmail" value="[%origEmail%]">
369
          <b>E-Mail</b></font></p>
370
        <p><font size="-1"> 
371
          <input type="TEXT" name="origPhone" id="origPhone" value="[%origPhone%]">
372
          <b>Phone</b></font></p>
373
        <p><font size="-1"> 
374
          <input type="TEXT" name="origFAX" id="origFAX" value="[%origFAX%]">
375
          <b>FAX</b></font></p>
376
        <p><font size="-1"><b>Street information (number, street, unit, etc., 
377
          comma-separated)</b></font></p>
378
        <p><font size="-1"> 
379
          <textarea rows="5" cols="60" id="origDelivery" name="origDelivery">[%origDelivery%]</textarea>
380
          </font></p>
381
        <p><font size="-1"> 
382
          <input type="TEXT" name="origCity" id="origCity" value="[%origCity%]" size="50">
383
          <b>City</b></font></p>
384
        <p> <font size="-1">
385
          <select name="origState" id="origState">
386
	    [% IF form == 're_entry' %]
387
                <option selected>[%origState%]</option>
388
	    [% ELSE %]
389
		<option>Select state here.</option>
390
	    [% END %]
391
            <option>Alabama</option>
392
            <option>Alaska</option>
393
            <option>American Samoa</option>
394
            <option>Arizona</option>
395
            <option>Arkansas</option>
396
            <option>California</option>
397
            <option>Colorado</option>
398
            <option>Connecticut</option>
399
            <option>Delaware</option>
400
            <option>District of Columbia</option>gh
401
            <option>Federated States of Micronesia</option>
402
            <option>Florida</option>
403
            <option>Georgia</option>
404
            <option>Guam</option>
405
            <option>Hawaii</option>
406
            <option>Idaho</option>
407
            <option>Illinois</option>
408
            <option>Indiana</option>
409
            <option>Iowa</option>
410
            <option>Kansas</option>
411
            <option>Kentucky</option>
412
            <option>Louisiana</option>
413
            <option>Maine</option>
414
            <option>Marshall Islands</option>
415
            <option>Maryland</option>
416
            <option>Massachusetts</option>
417
            <option>Michigan</option>
418
            <option>Minnesota</option>
419
            <option>Mississippi</option>
420
            <option>Missouri</option>
421
            <option>Montana</option>
422
            <option>Nebraska</option>
423
            <option>Nevada</option>
424
            <option>New Hampshire</option>
425
            <option>New Jersey</option>
426
            <option>New Mexico</option>
427
            <option>New York</option>
428
            <option>North Carolina</option>
429
            <option>North Dakota</option>
430
            <option>Northern Mariana Islands</option>
431
            <option>Ohio</option>
432
            <option>Oklahoma</option>
433
            <option>Oregon</option>
434
            <option>Palau</option>
435
            <option>Pennsylvania</option>
436
            <option>Puerto Rico</option>
437
            <option>Rhode Island</option>
438
            <option>South Carolina</option>
439
            <option>South Dakota</option>
440
            <option>Tennessee</option>
441
            <option>Texas</option>
442
            <option>Utah</option>
443
            <option>Vermont</option>
444
            <option>Virgin Islands</option>
445
            <option>Virginia</option>
446
            <option>Washington</option>
447
            <option>West Virginia</option>
448
            <option>Wisconsin</option>
449
            <option>Wyoming</option>
450
          </select>
451
          <b>State</b></font>
452
          <font size="-1"> 
453
          <input type="TEXT" name="origStateOther" id="origStateOther" value="[%origStateOther%]">
454
          <b>Other State or Province</b></font>
455
          </p>
456
        <p><font size="-1"><b> 
457
          <input type="TEXT" name="origZIP" id="origZip" value="[%origZIP%]" size="10">
458
          <b>ZIP</b></b></font></p>
459
        <p><font size="-1"> 
460
          <input type="TEXT" name="origCountry" id="origCountry" value="[%origCountry%]">
461
          <b>Country</b></font></p>
462
    </tr>
463
  </table>
464
  <p><b><font size="-1" color="#0000ff">
465
      <a 
466
       href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalOriginators"
467
       target="guide">ADDITIONAL ORIGINATORS</a>
468
	</font></b>
469
  </p>
470
  <table cellspacing="0" border="0" cellpadding="9" width="760"
471
bgcolor="#c6d6e7">
472
    <tr> 
473
      <td width="21%" valign="TOP"> 
474
        <p><font size="-1"><b>First Name</b></font></p>
475
      </td>
476
      <td width="21%" valign="TOP"> 
477
        <p><font size="-1"><b>Last Name</b></font></p>
478
      </td>
479
      <td width="58%" valign="TOP"> 
480
        <p><font size="-1"><b>Role</b></font></p>
481
      </td>
482
    </tr>
483
    <tr> 
484
      <td width="21%" valign="TOP"> 
485
        <p><font size="-1"> 
486
          <input type="TEXT" name="origNamefirst1" value="[%origNamefirst1%]">
487
          </font></p>
488
      </td>
489
      <td width="21%" valign="TOP"> 
490
        <p><font size="-1"> 
491
          <input type="TEXT" name="origNamelast1" value="[%origNamelast1%]">
492
          </font></p>
493
      </td>
494
      <td width="58%" valign="TOP"> 
495
        <p> <font size="-1">
496
          <select name="origRole1">
497
	    [% IF form == 're_entry' %]
498
	     	<option selected>[%origRole1%]</option>
499
	    [% END %]
500
            <option>Principal Investigator</option>
501
            <option>Custodian/Steward</option>
502
            <option>Metadata Provider</option>
503
            <option>Owner</option>
504
          </select>
505
          </font></p>
506
      </td>
507
    </tr>
508
    <tr> 
509
      <td width="21%" valign="TOP"> 
510
        <p><font size="-1"> 
511
          <input type="TEXT" name="origNamefirst2" value="[%origNamefirst2%]">
512
          </font></p>
513
      </td>
514
      <td width="21%" valign="TOP"> 
515
        <p><font size="-1"> 
516
          <input type="TEXT" name="origNamelast2" value="[%origNamelast2%]">
517
          </font></p>
518
      </td>
519
      <td width="58%" valign="TOP"> 
520
        <p> <font size="-1">
521
          <select name="origRole2">
522
	    [% IF form == 're_entry' %]
523
	     	<option selected>[%origRole2%]</option>
524
	    [% END %]
525
            <option>Principal Investigator</option>
526
            <option>Custodian/Steward</option>
527
            <option>Metadata Provider</option>
528
            <option>Owner</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="origNamefirst3" value="[%origNamefirst3%]">
537
          </font></p>
538
      </td>
539
      <td width="21%" valign="TOP"> 
540
        <p><font size="-1"> 
541
          <input type="TEXT" name="origNamelast3" value="[%origNamelast3%]">
542
          </font></p>
543
      </td>
544
      <td width="58%" valign="TOP"> 
545
        <p> <font size="-1">
546
          <select name="origRole3">
547
	    [% IF form == 're_entry' %]
548
	     	<option selected>[%origRole3%]</option>
549
	    [% END %]
550
            <option>Principal Investigator</option>
551
            <option>Custodian/Steward</option>
552
            <option>Metadata Provider</option>
553
            <option>Owner</option>
554
          </select>
555
          </font></p>
556
      </td>
557
    </tr>
558
    <tr> 
559
      <td width="21%" valign="TOP"> 
560
        <p><font size="-1"> 
561
          <input type="TEXT" name="origNamefirst4" value="[%origNamefirst4%]">
562
          </font></p>
563
      </td>
564
      <td width="21%" valign="TOP"> 
565
        <p><font size="-1"> 
566
          <input type="TEXT" name="origNamelast4" value="[%origNamelast4%]">
567
          </font></p>
568
      </td>
569
      <td width="58%" valign="TOP"> 
570
        <p> <font size="-1">
571
          <select name="origRole4">
572
	    [% IF form == 're_entry' %]
573
	     	<option selected>[%origRole4%]</option>
574
	    [% END %]
575
            <option>Principal Investigator</option>
576
            <option>Custodian/Steward</option>
577
            <option>Metadata Provider</option>
578
            <option>Owner</option>
579
          </select>
580
          </font></p>
581
      </td>
582
    </tr>
583
    <tr> 
584
      <td width="21%" valign="TOP"> 
585
        <p><font size="-1"> 
586
          <input type="TEXT" name="origNamefirst5" value="[%origNamefirst5%]">
587
          </font></p>
588
      </td>
589
      <td width="21%" valign="TOP"> 
590
        <p><font size="-1"> 
591
          <input type="TEXT" name="origNamelast5" value="[%origNamelast5%]">
592
          </font></p>
593
      </td>
594
      <td width="58%" valign="TOP"> 
595
        <p> <font size="-1">
596
          <select name="origRole5">
597
	    [% IF form == 're_entry' %]
598
	     	<option selected>[%origRole5%]</option>
599
	    [% END %]
600
            <option>Principal Investigator</option>
601
            <option>Custodian/Steward</option>
602
            <option>Metadata Provider</option>
603
            <option>Owner</option>
604
          </select>
605
          </font></p>
606
      </td>
607
    </tr>
608
    <tr> 
609
      <td width="21%" valign="TOP"> 
610
        <p><font size="-1"> 
611
          <input type="TEXT" name="origNamefirst6" value="[%origNamefirst6%]">
612
          </font></p>
613
      </td>
614
      <td width="21%" valign="TOP"> 
615
        <p><font size="-1"> 
616
          <input type="TEXT" name="origNamelast6" value="[%origNamelast6%]">
617
          </font></p>
618
      </td>
619
      <td width="58%" valign="TOP"> 
620
        <p> <font size="-1">
621
          <select name="origRole6">
622
	    [% IF form == 're_entry' %]
623
	     	<option selected>[%origRole6%]</option>
624
	    [% END %]
625
            <option>Principal Investigator</option>
626
            <option>Custodian/Steward</option>
627
            <option>Metadata Provider</option>
628
            <option>Owner</option>
629
          </select>
630
          </font></p>
631
      </td>
632
    </tr>
633
    <tr> 
634
      <td width="21%" valign="TOP"> 
635
        <p><font size="-1"> 
636
          <input type="TEXT" name="origNamefirst7" value="[%origNamefirst7%]">
637
          </font></p>
638
      </td>
639
      <td width="21%" valign="TOP"> 
640
        <p><font size="-1"> 
641
          <input type="TEXT" name="origNamelast7" value="[%origNamelast7%]">
642
          </font></p>
643
      </td>
644
      <td width="58%" valign="TOP"> 
645
        <p> <font size="-1">
646
          <select name="origRole7">
647
	    [% IF form == 're_entry' %]
648
	     	<option selected>[%origRole7%]</option>
649
	    [% END %] 
650
            <option>Principal Investigator</option>
651
            <option>Custodian/Steward</option>
652
            <option>Metadata Provider</option>
653
            <option>Owner</option>
654
          </select>
655
          </font></p>
656
      </td>
657
    </tr>
658
    <tr> 
659
      <td width="21%" valign="TOP"> 
660
        <p><font size="-1"> 
661
          <input type="TEXT" name="origNamefirst8" value="[%origNamefirst8%]">
662
          </font></p>
663
      </td>
664
      <td width="21%" valign="TOP"> 
665
        <p><font size="-1"> 
666
          <input type="TEXT" name="origNamelast8" value="[%origNamelast8%]">
667
          </font></p>
668
      </td>
669
      <td width="58%" valign="TOP"> 
670
        <p> <font size="-1">
671
          <select name="origRole8">
672
	    [% IF form == 're_entry' %]
673
	     	<option selected>[%origRole8%]</option>
674
	    [% END %]
675
            <option>Principal Investigator</option>
676
            <option>Custodian/Steward</option>
677
            <option>Metadata Provider</option>
678
            <option>Owner</option>
679
          </select>
680
          </font></p>
681
      </td>
682
    </tr>
683
    <tr> 
684
      <td width="21%" valign="TOP"> 
685
        <p><font size="-1"> 
686
          <input type="TEXT" name="origNamefirst9" value="[%origNamefirst9%]">
687
          </font></p>
688
      </td>
689
      <td width="21%" valign="TOP"> 
690
        <p><font size="-1"> 
691
          <input type="TEXT" name="origNamelast9" value="[%origNamelast9%]">
692
          </font></p>
693
      </td>
694
      <td width="58%" valign="TOP"> 
695
        <p> <font size="-1">
696
          <select name="origRole9">
697
	    [% IF form == 're_entry' %]
698
	     	<option selected>[%origRole9%]</option>
699
	    [% END %]
700
            <option>Principal Investigator</option>
701
            <option>Custodian/Steward</option>
702
            <option>Metadata Provider</option>
703
            <option>Owner</option>
704
          </select>
705
          </font></p>
706
      </td>
707
    </tr>
708
    <tr> 
709
      <td width="21%" valign="TOP"> 
710
        <p><font size="-1"> 
711
          <input type="TEXT" name="origNamefirst10" value="[%origNamefirst10%]">
712
          </font></p>
713
      </td>
714
      <td width="21%" valign="TOP"> 
715
        <p><font size="-1"> 
716
          <input type="TEXT" name="origNamelast10" value="[%origNamelast10%]">
717
          </font></p>
718
      </td>
719
      <td width="58%" valign="TOP"> 
720
        <p> <font size="-1">
721
          <select name="origRole10">
722
	    [% IF form == 're_entry' %]
723
	     	<option selected>[%origRole10%]</option>
724
	    [% END %]
725
            <option>Principal Investigator</option>
726
            <option>Custodian/Steward</option>
727
            <option>Metadata Provider</option>
728
            <option>Owner</option>
729
          </select>
730
          </font></p>
731
      </td>
732
    </tr>
733
  </table>
734
  <br>
735
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
736
       <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetAbstract"
737
          target="guide">DATA SET ABSTRACT</a>
738
	</font></b></font></p>
739

    
740
  <table width="760" border="0" cellspacing="0" cellpadding="9"
741
bgcolor="#c6d6e7">
742
    <tr> 
743
      <td> 
744
        <h2 align="left"><b><font size="-1" color="#ff0000">*</font><font size="-1">Data 
745
          Set Abstract</font></b></h2>
746
        <p align="left"> 
747
          <textarea rows="5" cols="80" name="abstract">[%abstract%]</textarea>
748
        </p>
749
      </td>
750
    </tr>
751
  </table>
752
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
753
       <a 
754
        href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#KeywordInformation"
755
        target="guide">KEYWORD INFORMATION</a>
756
	</font></b></font> 
757
    <font size="-1"><b><br>
758
    </b>(for example keywords, have a look at the keyword thesaurus for the <a href=
759
"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html" target="nasa"><font color=
760
"008000">NASA Global Change Master Directory (GCMD))</font></a></font></p>
761
 [% numKey = 1 %]
762
 [% IF keyCount > 0 %]
763
   [% numKey = keyCount %]
764
 [% END %]
765
 <input type="hidden" name="keyCount" value="[%numKey%]" 
766
            id="keyCount">
767
  <table cellspacing="0" border="0" cellpadding="9" width="760"
768
bgcolor="#c6d6e7"> 
769
 <table cellspacing="0" border="0" cellpadding="9" width="760"
770
bgcolor="#c6d6e7">
771
    <tr> 
772
      <td width="34%" valign="TOP"> 
773
        <p><font size="-1"><b>Keyword</b></font></p>
774
      </td>
775
      <td width="18%" valign="TOP"> 
776
        <p><font size="-1"><b>Keyword Type</b></font></p>
777
      </td>
778
      <td width="48%" valign="TOP"> 
779
        <p><font size="-1"><b>Keyword Thesaurus</b></font></p>
780
      </td>
781
    </tr>
782
        [% cnt = 1 %]
783
        [% WHILE cnt <= numKey %]
784
            <tr> 
785
            <td>
786
            [% SET key = "keyword${cnt}" %]
787
            <input name="keyword[%cnt%]" value="[%$key%]" size="40">
788
            </td>
789

    
790
            <td>
791
            [% SET keyT = "kwType${cnt}" %]
792
            <select name="kwType[%cnt%]">
793
	    [% IF form == 're_entry' %]
794
	     	<option selected>[%$keyT%]</option>
795
	    [% END %]
796
	    <option>none</option>
797
            <option>theme</option>
798
            <option>place</option>
799
            <option>stratum</option>
800
            <option>temporal</option>
801
            <option>taxonomic</option>
802
            </select>
803
            </td>
804

    
805
            <td>
806
            [% SET keyTh = "kwTh${cnt}" %]
807
            <select name="kwTh[%cnt%]">
808
	    [% IF form == 're_entry' %]
809
	     	<option selected>[%$keyTh%]</option>
810
	    [% END %]
811
	    <option>none</option>
812
            <option>GCMD</option>
813
            </select>
814
            </td>
815
            </tr>
816
            [% cnt = cnt + 1 %]
817
         [% END %]
818
        <tr id="addkeyrow"> 
819
            <td>
820
                <input type="button" value="Add Keyword" id="addkeybutton1"
821
                    onClick="addKeyword()">
822
            </td>
823
        </tr>
824
  </table>
825
  <br>
826
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
827
  <a
828
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TemporalCoverageOfData"
829
   target="guide">TEMPORAL COVERAGE OF DATA</a>
830
	</font></b></font></p>
831
  <table cellspacing="0" border="0" cellpadding="9" width="760"
832
bgcolor="#c6d6e7">
833
    <tr> 
834
      <td valign="TOP" colspan="3"> 
835
        <p><font size="-1"><b>Beginning Date of Data Set:</b></font></p>
836
      </td>
837
    </tr>
838
    <tr> 
839
      <td width="33%" valign="TOP"> 
840
        <p><font size="-1"> 
841
          <input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4">
842
          <b><font color="#ff0000">*</font>Year (YYYY)</b></font></p>
843
      </td>
844
      <td width="33%" valign="TOP"> 
845
        <p><font size="-1"> 
846
          <input type="TEXT" name="beginningMonth" value="[%beginningMonth%]" size="4" maxlength="2">
847
          <b><font color="#ff0000">*</font>Month(MM)</b></font></p>
848
      </td>
849
      <td width="33%" valign="TOP"> 
850
        <p><font size="-1"> 
851
          <input type="TEXT" name="beginningDay" value="[%beginningDay%]" size="4" maxlength="2">
852
          <b><font color="#ff0000">*</font>Day (DD)</b></font></p>
853
      </td>
854
    </tr>
855
    <tr> 
856
      <td valign="TOP" colspan="3"> 
857
        <p><font size="-1"><b>Ending Date of Data Set (provide no ending date 
858
          at all if your data set is open-ended):</b></font></p>
859
      </td>
860
    </tr>
861
    <tr> 
862
      <td width="33%" valign="TOP"> 
863
        <p><font size="-1"> 
864
          <input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4">
865
          <b>Year (YYYY)</b></font></p>
866
      </td>
867
      <td width="33%" valign="TOP"> 
868
        <p><font size="-1"> 
869
          <input type="TEXT" name="endingMonth" value="[%endingMonth%]" size="4" maxlength="2">
870
          <b>Month(MM)</b></font></p>
871
      </td>
872
      <td width="33%" valign="TOP"> 
873
        <p><font size="-1"> 
874
          <input type="TEXT" name="endingDay" value="[%endingDay%]" size="4" maxlength="2">
875
          <b>Day (DD)</b></font></p>
876
      </td>
877
    </tr>
878
  </table>
879

    
880
  <p align="left">
881
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#SpatialCoverageOfData" target="guide">SPATIAL COVERAGE OF DATA</a>
882
  </p>
883
  <table cellspacing="0" border="0" cellpadding="9" width="760"
884
bgcolor="#c6d6e7">
885
    <tr>
886
    <td valign="top" colspan="4">
887
    <span class="required">*</span><span class="label">Geographic Description</span><br>
888
    Enter a general description of the geographic area in which the data were collected.
889
    This can be a simple place name (e.g., Santa Barbara) or a fuller description.<br>
890
    <textarea rows="3" cols="80" name="geogdesc">[% geogdesc %]</textarea>
891
    </td>
892
    </tr>
893
    <tr> 
894
      <td valign="TOP" colspan="4"> 
895
        <p class="label">Coordinates (in Degrees, Minutes and Seconds; at 
896
          least 1 lat./long. pair is required):</p>
897
      </td>
898
    </tr>
899
    <tr> 
900
      <td valign="TOP" colspan="4"> 
901
        <p>Enter the first lat./long. pair only to indicate 
902
          a point location. Enter both coordinate pairs to indicate a bounding
903
          box. In case of a bounding box, the first coordinate pair is the
904
          northwest corner and the second coordinate pair is the southeast
905
          corner of the bounding box.</p>
906
      </td>
907
    </tr>
908
[% IF showSiteList == 'true' %]
909
    <tr>
910
      <td valign="TOP" colspan="4" class="tablepanel">
911
        <input class="required"
912
        type="CHECKBOX" name="useSiteCoord" [%useSiteCoord%]>
913
        Use [% lsite %] coordinates. (This indicates that the data were
914
        collected at the [% lsite %]. If you check this box, you don't need
915
        to fill in the lat./long. fields below).
916
        </td>
917
    </tr>
918
[% END %]
919
    <tr> 
920
      <td width="18%" valign="TOP"> 
921
        <span class="required">*</span><span class="label">Latitude</span>
922
      </td>
923
      <td width="20%" valign="TOP"> 
924
        &nbsp;North/South
925
      </td>
926
      <td width="20%" valign="TOP"> 
927
        <span class="required">*</span><span class="label">Longitude</span>
928
      </td>
929
      <td width="42%" valign="TOP"> 
930
        &nbsp;West/East
931
      </td>
932
    </tr>
933
    <tr> 
934
      <td width="20%" valign="TOP"> 
935
          <input type="TEXT" name="latDeg1" value="[%latDeg1%]" size="3" maxlength="3">
936
          <input type="TEXT" name="latMin1" value="[%latMin1%]" size="2" maxlength="2">
937
          <input type="TEXT" name="latSec1" value="[%latSec1%]" size="2" maxlength="2">
938
      </td>
939
      <td width="20%" valign="TOP"> 
940
          <select name="hemisphLat1">
941
	    [% IF form == 're_entry' %]
942
	    	<option selected>[%hemisphLat1%]</option>
943
	    [% END %]
944
            <option>N</option>
945
            <option>S</option>
946
          </select>
947
      </td>
948
      <td width="20%" valign="TOP"> 
949
          <input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3">
950
          <input type="TEXT" name="longMin1" value="[%longMin1%]" size="2" maxlength="2">
951
          <input type="TEXT" name="longSec1" value="[%longSec1%]" size="2" maxlength="2">
952
      </td>
953
      <td width="40%" valign="TOP"> 
954
          <select name="hemisphLong1">
955
	    [% IF form == 're_entry' %]
956
	    	<option selected>[%hemisphLong1%]</option>
957
	    [% END %]
958
            <option>W</option>
959
            <option>E</option>
960
          </select>
961
      </td>
962
    </tr>
963
    <tr> 
964
      <td valign="TOP" colspan="4"> 
965
        The second lat./long. pair, if provided, indicates 
966
        the southeast corner of a bounding box.
967
      </td>
968
    </tr>
969
    <tr> 
970
      <td width="18%" valign="TOP"> 
971
        Latitude
972
      </td>
973
      <td width="20%" valign="TOP"> 
974
        &nbsp;North/South
975
      </td>
976
      <td width="20%" valign="TOP"> 
977
        Longitude
978
      </td>
979
      <td width="42%" valign="TOP"> 
980
        West/East
981
      </td>
982
    </tr>
983
    <tr> 
984
      <td width="20%" valign="TOP"> 
985
          <input type="TEXT" name="latDeg2" value="[%latDeg2%]" size="3" maxlength="3">
986
          <input type="TEXT" name="latMin2" value="[%latMin2%]" size="2" maxlength="2">
987
          <input type="TEXT" name="latSec2" value="[%latSec2%]" size="2" maxlength="2">
988
      </td>
989
      <td width="20%" valign="TOP"> 
990
          <select name="hemisphLat2">
991
	    [% IF form == 're_entry' %]	
992
	    	<option selected>[%hemisphLat2%]</option>
993
            [% END %]
994
	    <option>N</option>
995
            <option>S</option>
996
          </select>
997
      </td>
998
      <td width="20%" valign="TOP"> 
999
          <input type="TEXT" name="longDeg2" value="[%longDeg2%]" size="3" maxlength="3">
1000
          <input type="TEXT" name="longMin2" value="[%longMin2%]" size="2" maxlength="2">
1001
          <input type="TEXT" name="longSec2" value="[%longSec2%]" size="2" maxlength="2">
1002
      </td>
1003
      <td width="40%" valign="TOP"> 
1004
          <select name="hemisphLong2">
1005
	    [% IF form == 're_entry' %]
1006
	    	<option selected>[%hemisphLong2%]</option>
1007
	    [% END %]
1008
            <option>W</option>
1009
            <option>E</option>
1010
          </select>
1011
      </td>
1012
    </tr>
1013
  </table>
1014

    
1015
  <p align="left">
1016
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TaxonomicCoverage" target="guide">TAXONOMIC COVERAGE OF DATA</a>
1017
   </p>
1018
  <table cellspacing="0" border="0" cellpadding="9" width="760" 
1019
    bgcolor="#c6d6e7">
1020
    <tbody>
1021
    <tr> 
1022
        <td colspan="2">
1023
        <p class="label">List the taxa associated with this set of data.</p>
1024
        <p>The Taxon Rank should indicate the level in the taxonomic
1025
        hierarchy (e.g., Phylum or Species) and the Taxonomic Name should 
1026
        be the scientific name for the organism at that level 
1027
        (e.g., <i>Ursus arctos</i>).</p>
1028
        [% numTaxa = 1 %]
1029
        [% IF taxaCount > 0 %]
1030
            [% numTaxa = taxaCount %]
1031
        [% END %]
1032
        <input type="hidden" name="taxaCount" value="[%numTaxa%]" 
1033
            id="taxaCount">
1034
        </td>
1035
    </tr>
1036

    
1037
    <tr>
1038
    <td>
1039
        <table border="0">
1040
        <tbody>
1041
        <tr> 
1042
            <td><span class="label">Taxon Rank</span></td>
1043
            <td><span class="label">Taxon Name</span></td>
1044
        </tr>
1045
        [% cnt = 1 %]
1046
        [% WHILE cnt <= numTaxa %]
1047
            <tr> 
1048
            <td>
1049
            [% SET trn = "taxonRankName${cnt}" %]
1050
            <input name="taxonRankName[%cnt%]" value="[% $trn %]" size="25">
1051
            </td>
1052
            <td>
1053
            [% SET trv = "taxonRankValue${cnt}" %]
1054
            <input name="taxonRankValue[%cnt%]" value="[% $trv %]" size="25">
1055
            </td>
1056
            </tr>
1057
            [% cnt = cnt + 1 %]
1058
         [% END %]
1059
        <tr id="addtaxarow"> 
1060
            <td>
1061
                <input type="button" value="Add taxon" id="addtaxabutton1"
1062
                    onClick="addTaxon()">
1063
            </td>
1064
        </tr>
1065
        </tbody>
1066
        </table>
1067

    
1068
     </td>
1069
     </tr>
1070
     <tr> 
1071
        <td colspan="2">
1072
        <p class="label">Taxonomic Authority</p>
1073
        <p>List the source(s) used for identifying and naming taxa in this
1074
        list.  These sources should provide comprehensive information about
1075
        the taxonomic concepts indicated by the names listed.</p>
1076
        <textarea rows="5" cols="80" name="taxaAuth">[% taxaAuth %]</textarea>
1077
        </td>
1078
     </tr>
1079
     </tbody>
1080
   </table>
1081

    
1082
  <p align="left">
1083
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Methods" target="guide">METHODS</a>
1084
   </p>
1085
  <table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1086
    <tbody>
1087
    <tr> 
1088
      <td valign="top" colspan="3"> 
1089
        <p class="label">Data Collection Methods</p>
1090
      </td>
1091
    </tr>
1092
    <tr> 
1093
      <td valign="top"> 
1094
        <p>
1095
          <input type="text" name="methodTitle" value="[%methodTitle%]" size="40">
1096
          <span class="label">Title of Method</span>
1097
        </p>
1098
        <p>
1099
          <span class="label">Method Description</span>
1100
        [% IF methodPara.size < 1 %]
1101
          <br>
1102
          <textarea rows="5" cols="80" name="methodPara"></textarea>
1103
        [% END %]
1104
        [% FOREACH para = methodPara %]
1105
          <br>
1106
          <textarea rows="5" cols="80" name="methodPara">[% para %]</textarea>
1107
        [% END %]
1108
        </p>
1109
        <p>
1110
          <input type="button" value="Add paragraph" id="addparabutton1"
1111
                 onClick="addParagraph()">
1112
        </p><br>
1113
        <p class="label">Description of Study Extent</p>
1114
        <p>Describe the temporal, spatial and taxonomic extent of the study,
1115
        supplementing the information on coverage provided above.  For example,
1116
        if the temporal coverage of the data is 1990-2000, you might provide 
1117
        details about any years that were missed or the months in which sampling
1118
        occurred.</p>
1119
        <p>
1120
          <textarea rows="5" cols="80" name="studyExtentDescription">[% studyExtentDescription %]</textarea>
1121
        </p><br>
1122
        <p class="label">Sampling Description</p>
1123
        <p>Describe the sampling design of the study.  For example, you might 
1124
        describe the way in which treatments were assigned to sampling units.
1125
        </p>
1126
        <p>
1127
          <textarea rows="5" cols="80" name="samplingDescription">[% samplingDescription %]</textarea>
1128
        </p>
1129
      </td>
1130
     </tbody>
1131
   </table>
1132

    
1133
  <p align="left">
1134
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetContactAddress" target="guide">DATA SET CONTACT</a>
1135
  </p>
1136
  <table border="0" cellspacing="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1137
    <tr> 
1138
      <td valign="TOP" colspan="3">
1139
        <input type="CHECKBOX" name="useOrigAddress" onClick="copyContact()" id="copyCheckBox" [%useOrigAddress%]>
1140
        Use the same name and address as the PRINCIPAL DATA SET OWNER above (If you check this box, 
1141
        you don't need to fill in the address fields below).</td>
1142
    </tr>
1143
    <tr> 
1144
      <td valign="TOP" colspan="8"> 
1145
        <p>
1146
          <input type="TEXT" name="origNamefirstContact" id="contactNameFirst" value="[%origNamefirstContact%]" size="40">
1147
          <b><font color="#ff0000">*</font>First Name</b></p>
1148
        <p>
1149
          <input type="TEXT" name="origNamelastContact" id="contactNameLast" value="[%origNamelastContact%]" size="40">
1150
          <b><font color="#ff0000">*</font>Last Name</b></p>
1151
        <p>
1152
          <input type="TEXT" name="origNameOrgContact" id="contactNameOrg" value="[%origNameOrgContact%]" size="60">
1153
          <b>Organization Name</b></p>
1154
        <p>
1155
          <input type="TEXT" name="origEmailContact" id="contactEmail" value="[%origEmailContact%]">
1156
          <b>E-Mail</b></p>
1157
        <p>
1158
          <input type="TEXT" name="origPhoneContact" id="contactPhone" value="[%origPhoneContact%]">
1159
          <b>Phone</b></p>
1160
        <p>
1161
          <input type="TEXT" name="origFAXContact" id="contactFAX" value="[%origFAXContact%]">
1162
          <b>FAX</b></p>
1163
        <p><b>Street information (number, street, unit, etc., 
1164
          comma-separated)</b></p>
1165
        <p>
1166
          <textarea rows="5" cols="60" name="origDeliveryContact" id="contactDelivery">[%origDeliveryContact%]</textarea></p>
1167
        <p>
1168
          <input type="TEXT" name="origCityContact" id="contactCity" value="[%origCityContact%]" size="50">
1169
          <b>City</b></p>
1170
        <p> 
1171
          <select id="contactState" name="origStateContact">
1172
	    [% IF form == 're_entry' %]	
1173
            	<option>[%origStateContact%]</option>
1174
	    [% ELSE %]
1175
                <option>Select state here.</option>
1176
            [% END %]
1177
	        <option>Alabama</option>
1178
            <option>Alaska</option>
1179
            <option>American Samoa</option>
1180
            <option>Arizona</option>
1181
            <option>Arkansas</option>
1182
            <option>California</option>
1183
            <option>Colorado</option>
1184
            <option>Connecticut</option>
1185
            <option>Delaware</option>
1186
            <option>District of Columbia</option>
1187
            <option>Federated States of Micronesia</option>
1188
            <option>Florida</option>
1189
            <option>Georgia</option>
1190
            <option>Guam</option>
1191
            <option>Hawaii</option>
1192
            <option>Idaho</option>
1193
            <option>Illinois</option>
1194
            <option>Indiana</option>
1195
            <option>Iowa</option>
1196
            <option>Kansas</option>
1197
            <option>Kentucky</option>
1198
            <option>Louisiana</option>
1199
            <option>Maine</option>
1200
            <option>Marshall Islands</option>
1201
            <option>Maryland</option>
1202
            <option>Massachusetts</option>
1203
            <option>Michigan</option>
1204
            <option>Minnesota</option>
1205
            <option>Mississippi</option>
1206
            <option>Missouri</option>
1207
            <option>Montana</option>
1208
            <option>Nebraska</option>
1209
            <option>Nevada</option>
1210
            <option>New Hampshire</option>
1211
            <option>New Jersey</option>
1212
            <option>New Mexico</option>
1213
            <option>New York</option>
1214
            <option>North Carolina</option>
1215
            <option>North Dakota</option>
1216
            <option>Northern Mariana Islands</option>
1217
            <option>Ohio</option>
1218
            <option>Oklahoma</option>
1219
            <option>Oregon</option>
1220
            <option>Palau</option>
1221
            <option>Pennsylvania</option>
1222
            <option>Puerto Rico</option>
1223
            <option>Rhode Island</option>
1224
            <option>South Carolina</option>
1225
            <option>South Dakota</option>
1226
            <option>Tennessee</option>
1227
            <option>Texas</option>
1228
            <option>Utah</option>
1229
            <option>Vermont</option>
1230
            <option>Virgin Islands</option>
1231
            <option>Virginia</option>
1232
            <option>Washington</option>
1233
            <option>West Virginia</option>
1234
            <option>Wisconsin</option>
1235
            <option>Wyoming</option>
1236
          </select>
1237
          <b>State</font></b>&nbsp;&nbsp;&nbsp;
1238
          <input type="TEXT" name="origStateOtherContact" id="contactStateOther" value="[%origStateOtherContact%]">
1239
          <b>Other State or Province</b>
1240
          </p>
1241
        <p>
1242
          <input type="TEXT" name="origZIPContact" size="10" id="contactZip" value="[%origZIPContact%]">
1243
          <b>ZIP</b></p>
1244
        <p>
1245
          <input type="TEXT" name="origCountryContact" id="contactCountry" value="[%origCountryContact%]">
1246
          <b>Country</b></p>
1247
      </td>
1248
    </tr>
1249
  </table>
1250

    
1251
  <p align="left">
1252
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DistributionIinformation" target="guide">DISTRIBUTION INFORMATION</a>
1253
  </p>
1254
  <table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1255
    <tr> 
1256
      <td width="50%" valign="TOP"> 
1257
        <p align="left"><font size="-1"> 
1258
          <input type="TEXT" name="identifier" value="[%identifier%]" size="40">
1259
  <b><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Site-specificCode"
1260
   target="guide">Dataset Name or Identifier (important)</a> </b></font></p>
1261

    
1262
        <p><font size="-1"><b><font color="#ff0000">*</font>Data Medium:</b></font></p>
1263
        <p> <font size="-1">
1264
          <select name="dataMedium">
1265
	    [% IF form == 're_entry' %]	
1266
	    	<option selected>[%dataMedium%]</option>
1267
	    [% ELSE %]
1268
                <option>Select type of medium here.</option>
1269
            [% END %]
1270
            <option>digital</option>
1271
            <option>hardcopy</option>
1272
            <option>other</option>
1273
          </select>
1274
          </font></p>
1275
        <p><font size="-1"><b>If you selected "other" for Data Medium, enter detail 
1276
          below</b></font></p>
1277
        <p><font size="-1"> 
1278
          <input type="TEXT" name="dataMediumOther" value="[%dataMediumOther%]" size="40">
1279
          </font></p>
1280
      </td>
1281
    </tr>
1282
    <tr> 
1283
      <td width="50%" valign="TOP"> 
1284
        <p> <font size="-1"><b><font color="#ff0000">*</font>Use Constraints:</b></font> 
1285
        </p>
1286
        <p> <font size="-1">
1287
          <select name="useConstraints">
1288
	    [% IF form == 're_entry' %]	
1289
	        <option selected>[%useConstraints%]</option>
1290
	    [% ELSE %]
1291
                <option>Select restrictions here.</option>
1292
	    [% END %]
1293
            <option>no restrictions</option>
1294
            <option>obtain permission from originator(s)</option>
1295
            <option>other</option>
1296
          </select>
1297
          </font></p>
1298
        <p><font size="-1"><b>If you selected "other" for Use Constraints, enter 
1299
          detail below.</b></font></p>
1300
        <p><font size="-1"> 
1301
          <input type="TEXT" name="useConstraintsOther" value="[%useConstraintsOther%]" size="40">
1302
          </font></p>
1303
      </td>
1304
    </tr>
1305
    <tr> 
1306
      <td> 
1307
        <p align="left"><font size="-1"> 
1308
          <input type="TEXT" name="url" value="[%url%]" size="50">
1309
          <b>URL (for location of data set or of more metadata)</b></font></p>
1310

    
1311
        <p align="left"><font size="-1"><b>
1312
  <a
1313
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalInformation"
1314
   target="guide">Additional Information/Remarks:</a>	
1315
	</b></font></p>
1316
        <p align="left"><font size="-1"> 
1317
          <textarea rows="5" cols="60" name="addComments">[%addComments%]</textarea>
1318
          </font></p>
1319
      </td>
1320
    </tr>
1321
  </table>
1322

    
1323
  <div align="center"> 
1324
    <table width="760" border="0" cellpadding="9" align="left" bgcolor="#C6d6e7" cellspacing="0">
1325
      <tr> 
1326
        <td width="760"> 
1327
          <div align="left"> <font color="#FF0000" size="-1">NOTE: You must submit 
1328
            your data in order for these to be entered in the Data Registry!</font> 
1329
            <p> 
1330
              <input type="SUBMIT" value="Submit Entry" name="SUBMIT">
1331
              <input type="RESET" name="RESET">
1332
            </p>
1333
          </div>
1334
        </td>
1335
      </tr>
1336
    </table>
1337
    <p>&nbsp;</p>
1338
    <div align="left"> </div>
1339
    <p align="left"> 
1340
    <p align="left">&nbsp; </p>
1341
    <p align="left">&nbsp; </p>
1342
  </div>
1343
</form>
1344
<p>&nbsp;</p>
1345
<p>&nbsp;</p>
1346

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