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

    
739
  <table width="760" border="0" cellspacing="0" cellpadding="9"
740
bgcolor="#c6d6e7">
741
    <tr> 
742
      <td> 
743
        <h2 align="left"><b><font size="-1" color="#b00000">Data 
744
          Set Abstract</font></b></h2>
745
        <p align="left"> 
746
          <textarea rows="5" cols="80" name="abstract">[%abstract%]</textarea>
747
        </p>
748
      </td>
749
    </tr>
750
  </table>
751
  [% IF hasKeyword == 'true' %]
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
  [% END %]
826
  <br>
827
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
828
  <a
829
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TemporalCoverageOfData"
830
   target="guide">TEMPORAL COVERAGE OF DATA</a>
831
	</font></b></font></p>
832
  <table cellspacing="0" border="0" cellpadding="9" width="760"
833
bgcolor="#c6d6e7">
834
    <tr> 
835
      <td valign="TOP" colspan="3"> 
836
        <p><font size="-1"><b>Beginning Date of Data Set:</b></font></p>
837
      </td>
838
    </tr>
839
    <tr> 
840
      <td width="33%" valign="TOP"> 
841
        <p><font size="-1"> 
842
          <input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4">
843
          <b><font color="#b00000">Year (YYYY)</font></b></font></p>
844
      </td>
845
      <td width="33%" valign="TOP"> 
846
        <p><font size="-1"> 
847
          <input type="TEXT" name="beginningMonth" value="[%beginningMonth%]" size="4" maxlength="2">
848
          <b><font color="#b00000">Month(MM)</font></b></font></p>
849
      </td>
850
      <td width="33%" valign="TOP"> 
851
        <p><font size="-1"> 
852
          <input type="TEXT" name="beginningDay" value="[%beginningDay%]" size="4" maxlength="2">
853
          <b><font color="#b00000">Day (DD)</font></b></font></p>
854
      </td>
855
    </tr>
856
    <tr> 
857
      <td valign="TOP" colspan="3"> 
858
        <p><font size="-1"><b>Ending Date of Data Set (provide no ending date 
859
          at all if your data set is open-ended):</b></font></p>
860
      </td>
861
    </tr>
862
    <tr> 
863
      <td width="33%" valign="TOP"> 
864
        <p><font size="-1"> 
865
          <input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4">
866
          <b>Year (YYYY)</b></font></p>
867
      </td>
868
      <td width="33%" valign="TOP"> 
869
        <p><font size="-1"> 
870
          <input type="TEXT" name="endingMonth" value="[%endingMonth%]" size="4" maxlength="2">
871
          <b>Month(MM)</b></font></p>
872
      </td>
873
      <td width="33%" valign="TOP"> 
874
        <p><font size="-1"> 
875
          <input type="TEXT" name="endingDay" value="[%endingDay%]" size="4" maxlength="2">
876
          <b>Day (DD)</b></font></p>
877
      </td>
878
    </tr>
879
  </table>
880

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

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

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

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

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

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

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

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

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

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

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