Project

General

Profile

1 1929 brooke
[% INCLUDE "genericHeader.tmpl" %]
2
3 1982 jones
  <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 1984 jones
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 2027 sgarg
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 2033 sgarg
	option2.appendChild(text2);
92 2027 sgarg
	newField.appendChild(option2);
93
	var option3=document.createElement("option");
94
	var text3=document.createTextNode("place");
95 2033 sgarg
	option3.appendChild(text3);
96 2027 sgarg
	newField.appendChild(option3)
97
	var option4=document.createElement("option");
98
	var text4=document.createTextNode("stratum");
99 2033 sgarg
	option4.appendChild(text4);
100 2027 sgarg
	newField.appendChild(option4);
101
	var option5=document.createElement("option");
102
	var text5=document.createTextNode("temporal");
103 2033 sgarg
	option5.appendChild(text5);
104 2027 sgarg
	newField.appendChild(option5);
105
	var option6=document.createElement("option");
106
	var text6=document.createTextNode("taxonomic");
107 2033 sgarg
	option6.appendChild(text6);
108 2027 sgarg
	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 2033 sgarg
    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 1982 jones
  </script>
217
218 1929 brooke
[% IF cfg == 'nrs' %]
219
  [% lsite = 'reserve' %]
220
  [% usite = 'Reserve' %]
221 1973 jones
  [% showSiteList = 'true' %]
222
[% ELSIF cfg == 'obfs' %]
223
  [% lsite = 'station' %]
224
  [% usite = 'Station' %]
225
  [% showSiteList = 'true' %]
226 2047 sgarg
[% ELSIF cfg == 'specnet' %]
227
  [% lsite = 'station' %]
228
  [% usite = 'Station' %]
229
  [% showSiteList = 'true' %]
230 1973 jones
[% ELSIF cfg == 'nceas' %]
231
  [% lsite = 'station' %]
232
  [% usite = 'Station' %]
233
  [% showSiteList = 'false' %]
234 1929 brooke
[% ELSE %]
235
  [% lsite = 'station' %]
236
  [% usite = 'Station' %]
237 1973 jones
  [% showSiteList = 'false' %]
238 1929 brooke
[% 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 1982 jones
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide" target="guide">
246 1929 brooke
        <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 1982 jones
      (<span class="required">*</span>) are required.
254 1929 brooke
      </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 2018 sgarg
      <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 1929 brooke
      <p>&nbsp;</p>
263
      <p>Please have a look at the
264 1982 jones
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide" target="guide">
265 1929 brooke
        <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 1982 jones
      (<span class="required">*</span>) are required.
271 1929 brooke
      </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 1982 jones
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#BasicInformation" target="guide">BASIC INFORMATION </a>
289 1929 brooke
  </p>
290
  <table width="760" border="0" cellspacing="0" cellpadding="9"
291
bgcolor="#c6d6e7">
292
    <tr>
293
      <td>
294 1982 jones
        <p align="left">
295
          <span class="required">*</span><span class="label">Name of Person completing this form</span>
296
	    </p>
297
        <p>
298 1929 brooke
          <input type="TEXT" name="providerGivenName" size="40" value="[%providerGivenName%]">
299 1982 jones
          <span class="required">*</span><span class="label">First Name</span></p>
300
        <p>
301 1929 brooke
          <input type="TEXT" name="providerSurName" size="40" value="[%providerSurName%]">
302 1982 jones
          <span class="required">*</span><span class="label">Last Name</span></p>
303 1973 jones
[% IF showSiteList == 'true' %]
304 1982 jones
        <p align="left">
305
          <select name="site">
306 1929 brooke
	    [% 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 1982 jones
          <span class="required">*</span><span class="label">[% usite %] Name</span></p>
316 1973 jones
[% END %]
317 2038 jones
        <p align="left">&nbsp;</p>
318 2016 sgarg
        <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 1973 jones
[% IF cfg == 'nceas' %]
322 1979 jones
        <p align="left">
323 1994 jones
          <span class="required">*</span><span class="label">NCEAS Project(s):</span></p>
324 1980 jones
          <select name="wg" multiple="multiple" size="5">
325 1974 jones
            [% FOREACH project = projects %]
326 2001 jones
              [% SET pname = $project.3 %]
327
              [% IF pname.length > 50 %]
328
                [% SET sname = $project.4 %]
329
              [% END %]
330 2041 sgarg
              [% SET label = "NCEAS ${project.0}: ${project.1}: $project.4" %]
331
              [% SET value = "NCEAS ${project.0}: ${project.1}: $project.3" %]
332 1974 jones
              [% SET sel = '' %]
333
              [% FOREACH group = wg %]
334 2001 jones
                  [% IF group == value %]
335 1974 jones
                      [% SET sel = 'selected="selected"' %]
336
                  [% END %]
337
              [% END %]
338 2001 jones
              <option value="[% value %]" [% sel %]>[% label %]</option>
339 1974 jones
            [% END %]
340
          </select>
341 1973 jones
[% END %]
342 2038 jones
[% 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 1929 brooke
      </td>
349
    </tr>
350
  </table>
351 1982 jones
  <p align="left">
352 2026 sgarg
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetOriginator" target="guide">PRINCIPAL DATA SET OWNER</a>
353 1929 brooke
  </p>
354
  <table border="0" cellpadding="9" width="760" bgcolor="#c6d6e7"
355
cellspacing="0">
356
    <tr>
357
      <td valign="TOP" colspan="3">
358 1982 jones
        <p>
359 2033 sgarg
          <input type="TEXT" name="origNamefirst0" size="40" id="origNameFirst" value="[%origNamefirst0%]">
360 1982 jones
          <span class="required">*</span><span class="label">First Name</span></p>
361
        <p>
362 2033 sgarg
          <input type="TEXT" name="origNamelast0" size="40" id="origNameLast" value="[%origNamelast0%]">
363 1982 jones
          <span class="required">*</span><span class="label">Last Name</span></p>
364 1929 brooke
        <p><font size="-1">
365 2033 sgarg
          <input type="TEXT" name="origNameOrg" size="60" id="origNameOrg" value="[%origNameOrg%]">
366 1929 brooke
          <b>Organization Name</b></font></p>
367
        <p><font size="-1">
368 2033 sgarg
          <input type="TEXT" name="origEmail" id="origEmail" value="[%origEmail%]">
369 1929 brooke
          <b>E-Mail</b></font></p>
370
        <p><font size="-1">
371 2033 sgarg
          <input type="TEXT" name="origPhone" id="origPhone" value="[%origPhone%]">
372 1929 brooke
          <b>Phone</b></font></p>
373
        <p><font size="-1">
374 2033 sgarg
          <input type="TEXT" name="origFAX" id="origFAX" value="[%origFAX%]">
375 1929 brooke
          <b>FAX</b></font></p>
376 2026 sgarg
        <p><font size="-1"><b>Street information (number, street, unit, etc.,
377 1929 brooke
          comma-separated)</b></font></p>
378
        <p><font size="-1">
379 2033 sgarg
          <textarea rows="5" cols="60" id="origDelivery" name="origDelivery">[%origDelivery%]</textarea>
380 1929 brooke
          </font></p>
381
        <p><font size="-1">
382 2033 sgarg
          <input type="TEXT" name="origCity" id="origCity" value="[%origCity%]" size="50">
383 1929 brooke
          <b>City</b></font></p>
384
        <p> <font size="-1">
385 2033 sgarg
          <select name="origState" id="origState">
386 1929 brooke
	    [% 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 2033 sgarg
            <option>District of Columbia</option>gh
401 1929 brooke
            <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 2033 sgarg
          <input type="TEXT" name="origStateOther" id="origStateOther" value="[%origStateOther%]">
454 1929 brooke
          <b>Other State or Province</b></font>
455
          </p>
456
        <p><font size="-1"><b>
457 2033 sgarg
          <input type="TEXT" name="origZIP" id="origZip" value="[%origZIP%]" size="10">
458 1929 brooke
          <b>ZIP</b></b></font></p>
459
        <p><font size="-1">
460 2033 sgarg
          <input type="TEXT" name="origCountry" id="origCountry" value="[%origCountry%]">
461 1929 brooke
          <b>Country</b></font></p>
462
    </tr>
463
  </table>
464
  <p><b><font size="-1" color="#0000ff">
465
      <a
466 1982 jones
       href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalOriginators"
467 1929 brooke
       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 1982 jones
       <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetAbstract"
737 1929 brooke
          target="guide">DATA SET ABSTRACT</a>
738 1985 jones
	</font></b></font></p>
739 1929 brooke
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 1982 jones
        href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#KeywordInformation"
755 1929 brooke
        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 2019 sgarg
"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html" target="nasa"><font color=
760 1929 brooke
"008000">NASA Global Change Master Directory (GCMD))</font></a></font></p>
761 2027 sgarg
 [% numKey = 1 %]
762
 [% IF keyCount > 0 %]
763
   [% numKey = keyCount %]
764
 [% END %]
765
 <input type="hidden" name="keyCount" value="[%numKey%]"
766
            id="keyCount">
767 1929 brooke
  <table cellspacing="0" border="0" cellpadding="9" width="760"
768 2027 sgarg
bgcolor="#c6d6e7">
769
 <table cellspacing="0" border="0" cellpadding="9" width="760"
770 1929 brooke
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 2027 sgarg
        [% 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 1929 brooke
	    [% IF form == 're_entry' %]
794 2027 sgarg
	     	<option selected>[%$keyT%]</option>
795 1929 brooke
	    [% 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 2027 sgarg
            </select>
803
            </td>
804
805
            <td>
806
            [% SET keyTh = "kwTh${cnt}" %]
807
            <select name="kwTh[%cnt%]">
808 1929 brooke
	    [% IF form == 're_entry' %]
809 2027 sgarg
	     	<option selected>[%$keyTh%]</option>
810 1929 brooke
	    [% END %]
811
	    <option>none</option>
812
            <option>GCMD</option>
813 2027 sgarg
            </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 1929 brooke
  </table>
825
  <br>
826
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
827
  <a
828 1982 jones
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TemporalCoverageOfData"
829 1929 brooke
   target="guide">TEMPORAL COVERAGE OF DATA</a>
830 1985 jones
	</font></b></font></p>
831 1929 brooke
  <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 1984 jones
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 1929 brooke
  <table cellspacing="0" border="0" cellpadding="9" width="760"
884
bgcolor="#c6d6e7">
885 1983 jones
    <tr>
886
    <td valign="top" colspan="4">
887
    <span class="required">*</span><span class="label">Geographic Description</span><br>
888 1985 jones
    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 1984 jones
    <textarea rows="3" cols="80" name="geogdesc">[% geogdesc %]</textarea>
891 1983 jones
    </td>
892
    </tr>
893 1929 brooke
    <tr>
894
      <td valign="TOP" colspan="4">
895 1984 jones
        <p class="label">Coordinates (in Degrees, Minutes and Seconds; at
896
          least 1 lat./long. pair is required):</p>
897 1929 brooke
      </td>
898
    </tr>
899
    <tr>
900
      <td valign="TOP" colspan="4">
901 1984 jones
        <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 1929 brooke
      </td>
907
    </tr>
908 1973 jones
[% IF showSiteList == 'true' %]
909 1984 jones
    <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 1929 brooke
    </tr>
918 1973 jones
[% END %]
919 1929 brooke
    <tr>
920
      <td width="18%" valign="TOP">
921 1984 jones
        <span class="required">*</span><span class="label">Latitude</span>
922 1929 brooke
      </td>
923
      <td width="20%" valign="TOP">
924 1984 jones
        &nbsp;North/South
925 1929 brooke
      </td>
926
      <td width="20%" valign="TOP">
927 1984 jones
        <span class="required">*</span><span class="label">Longitude</span>
928 1929 brooke
      </td>
929
      <td width="42%" valign="TOP">
930 1984 jones
        &nbsp;West/East
931 1929 brooke
      </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 1982 jones
          <input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3">
950 1929 brooke
          <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 1984 jones
        The second lat./long. pair, if provided, indicates
966
        the southeast corner of a bounding box.
967 1929 brooke
      </td>
968
    </tr>
969
    <tr>
970
      <td width="18%" valign="TOP">
971 1984 jones
        Latitude
972 1929 brooke
      </td>
973
      <td width="20%" valign="TOP">
974 1984 jones
        &nbsp;North/South
975 1929 brooke
      </td>
976
      <td width="20%" valign="TOP">
977 1984 jones
        Longitude
978 1929 brooke
      </td>
979
      <td width="42%" valign="TOP">
980 1984 jones
        West/East
981 1929 brooke
      </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 1982 jones
1015 1984 jones
  <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 1985 jones
     <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 1984 jones
     </tbody>
1080
   </table>
1081
1082
  <p align="left">
1083 1982 jones
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Methods" target="guide">METHODS</a>
1084 1984 jones
   </p>
1085 1982 jones
  <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 1989 jones
        </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 1982 jones
        </p>
1126 1989 jones
        <p>
1127
          <textarea rows="5" cols="80" name="samplingDescription">[% samplingDescription %]</textarea>
1128
        </p>
1129 1982 jones
      </td>
1130
     </tbody>
1131
   </table>
1132
1133 1984 jones
  <p align="left">
1134 2026 sgarg
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetContactAddress" target="guide">DATA SET CONTACT</a>
1135 1984 jones
  </p>
1136 1929 brooke
  <table border="0" cellspacing="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1137
    <tr>
1138 1991 jones
      <td valign="TOP" colspan="3">
1139 2033 sgarg
        <input type="CHECKBOX" name="useOrigAddress" onClick="copyContact()" id="copyCheckBox" [%useOrigAddress%]>
1140 2026 sgarg
        Use the same name and address as the PRINCIPAL DATA SET OWNER above (If you check this box,
1141 1991 jones
        you don't need to fill in the address fields below).</td>
1142 1929 brooke
    </tr>
1143
    <tr>
1144
      <td valign="TOP" colspan="8">
1145 1991 jones
        <p>
1146 2033 sgarg
          <input type="TEXT" name="origNamefirstContact" id="contactNameFirst" value="[%origNamefirstContact%]" size="40">
1147 1991 jones
          <b><font color="#ff0000">*</font>First Name</b></p>
1148
        <p>
1149 2033 sgarg
          <input type="TEXT" name="origNamelastContact" id="contactNameLast" value="[%origNamelastContact%]" size="40">
1150 1991 jones
          <b><font color="#ff0000">*</font>Last Name</b></p>
1151
        <p>
1152 2033 sgarg
          <input type="TEXT" name="origNameOrgContact" id="contactNameOrg" value="[%origNameOrgContact%]" size="60">
1153 1991 jones
          <b>Organization Name</b></p>
1154
        <p>
1155 2033 sgarg
          <input type="TEXT" name="origEmailContact" id="contactEmail" value="[%origEmailContact%]">
1156 1991 jones
          <b>E-Mail</b></p>
1157
        <p>
1158 2033 sgarg
          <input type="TEXT" name="origPhoneContact" id="contactPhone" value="[%origPhoneContact%]">
1159 1991 jones
          <b>Phone</b></p>
1160
        <p>
1161 2033 sgarg
          <input type="TEXT" name="origFAXContact" id="contactFAX" value="[%origFAXContact%]">
1162 1991 jones
          <b>FAX</b></p>
1163 2026 sgarg
        <p><b>Street information (number, street, unit, etc.,
1164 1991 jones
          comma-separated)</b></p>
1165
        <p>
1166 2033 sgarg
          <textarea rows="5" cols="60" name="origDeliveryContact" id="contactDelivery">[%origDeliveryContact%]</textarea></p>
1167 1991 jones
        <p>
1168 2033 sgarg
          <input type="TEXT" name="origCityContact" id="contactCity" value="[%origCityContact%]" size="50">
1169 1991 jones
          <b>City</b></p>
1170 1929 brooke
        <p>
1171 2033 sgarg
          <select id="contactState" name="origStateContact">
1172 1929 brooke
	    [% IF form == 're_entry' %]
1173 1982 jones
            	<option>[%origStateContact%]</option>
1174 1929 brooke
	    [% ELSE %]
1175 1982 jones
                <option>Select state here.</option>
1176 1929 brooke
            [% END %]
1177 1982 jones
	        <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 1929 brooke
          </select>
1237 1991 jones
          <b>State</font></b>&nbsp;&nbsp;&nbsp;
1238 2033 sgarg
          <input type="TEXT" name="origStateOtherContact" id="contactStateOther" value="[%origStateOtherContact%]">
1239 1991 jones
          <b>Other State or Province</b>
1240 1929 brooke
          </p>
1241 1991 jones
        <p>
1242 2033 sgarg
          <input type="TEXT" name="origZIPContact" size="10" id="contactZip" value="[%origZIPContact%]">
1243 1991 jones
          <b>ZIP</b></p>
1244
        <p>
1245 2033 sgarg
          <input type="TEXT" name="origCountryContact" id="contactCountry" value="[%origCountryContact%]">
1246 1991 jones
          <b>Country</b></p>
1247 1929 brooke
      </td>
1248
    </tr>
1249
  </table>
1250 1984 jones
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 1985 jones
  <table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1255 1929 brooke
    <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 1985 jones
  <b><a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Site-specificCode"
1260 1929 brooke
   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 1982 jones
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalInformation"
1314 1929 brooke
   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 1984 jones
1323 1929 brooke
  <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" %]