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
  </script>
16

    
17
[% IF cfg == 'nrs' %]
18
  [% lsite = 'reserve' %]
19
  [% usite = 'Reserve' %]
20
  [% showSiteList = 'true' %]
21
[% ELSIF cfg == 'obfs' %]
22
  [% lsite = 'station' %]
23
  [% usite = 'Station' %]
24
  [% showSiteList = 'true' %]
25
[% ELSIF cfg == 'nceas' %]
26
  [% lsite = 'station' %]
27
  [% usite = 'Station' %]
28
  [% showSiteList = 'false' %]
29
[% ELSE %]
30
  [% lsite = 'station' %]
31
  [% usite = 'Station' %]
32
  [% showSiteList = 'false' %]
33
[% END %]
34

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

    
605
  <table width="760" border="0" cellspacing="0" cellpadding="9"
606
bgcolor="#c6d6e7">
607
    <tr> 
608
      <td> 
609
        <h2 align="left"><b><font size="-1" color="#ff0000">*</font><font size="-1">Data 
610
          Set Abstract</font></b></h2>
611
        <p align="left"> 
612
          <textarea rows="5" cols="80" name="abstract">[%abstract%]</textarea>
613
        </p>
614
      </td>
615
    </tr>
616
  </table>
617
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
618
       <a 
619
        href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#KeywordInformation"
620
        target="guide">KEYWORD INFORMATION</a>
621
	</font></b></font> 
622
    <font size="-1"><b><br>
623
    </b>(for example keywords, have a look at the keyword thesaurus for the <a href=
624
"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html"><font color=
625
"008000">NASA Global Change Master Directory (GCMD))</font></a></font></p>
626
  <table cellspacing="0" border="0" cellpadding="9" width="760"
627
bgcolor="#c6d6e7">
628
    <tr> 
629
      <td width="34%" valign="TOP"> 
630
        <p><font size="-1"><b>Keyword</b></font></p>
631
      </td>
632
      <td width="18%" valign="TOP"> 
633
        <p><font size="-1"><b>Keyword Type</b></font></p>
634
      </td>
635
      <td width="48%" valign="TOP"> 
636
        <p><font size="-1"><b>Keyword Thesaurus</b></font></p>
637
      </td>
638
    </tr>
639
    <tr> 
640
      <td width="34%" valign="TOP"> 
641
        <p><font size="-1"> 
642
          <input type="TEXT" name="keyword0" value="[%keyword0%]" size="40">
643
          </font></p>
644
      </td>
645
      <td width="18%" valign="TOP"> 
646
        <p> <font size="-1">
647
          <select name="kwType0">
648
	    [% IF form == 're_entry' %]
649
	     	<option selected>[%kwType0%]</option>
650
	    [% END %]
651
	    <option>none</option>
652
            <option>theme</option>
653
            <option>place</option>
654
            <option>stratum</option>
655
            <option>temporal</option>
656
            <option>taxonomic</option>
657
          </select>
658
          </font></p>
659
      </td>
660
      <td width="48%" valign="TOP"> 
661
        <p> <font size="-1">
662
          <select name="kwTh0">
663
	    [% IF form == 're_entry' %]
664
	     	<option selected>[%kwTh0%]</option>
665
	    [% END %]
666
	    <option>none</option>
667
            <option>GCMD</option>
668
          </select>
669
          </font></p>
670
      </td>
671
    </tr>
672
    <tr> 
673
      <td width="34%" valign="TOP"> 
674
        <p><font size="-1"> 
675
          <input type="TEXT" name="keyword1" value="[%keyword1%]" size="40">
676
          </font></p>
677
      </td>
678
      <td width="18%" valign="TOP"> 
679
        <p> <font size="-1">
680
          <select name="kwType1">
681
	    [% IF form == 're_entry' %]
682
	     	<option selected>[%kwType1%]</option>
683
	    [% END %]
684
	    <option>none</option>
685
            <option>theme</option>
686
            <option>place</option>
687
            <option>stratum</option>
688
            <option>temporal</option>
689
            <option>taxonomic</option>
690
          </select>
691
          </font></p>
692
      </td>
693
      <td width="48%" valign="TOP"> 
694
        <p> <font size="-1">
695
          <select name="kwTh1">
696
	    [% IF form == 're_entry' %]
697
	     	<option selected>[%kwTh1%]</option>
698
	    [% END %]
699
	    <option>none</option>
700
            <option>GCMD</option>
701
          </select>
702
          </font></p>
703
      </td>
704
    </tr>
705
    <tr> 
706
      <td width="34%" valign="TOP"> 
707
        <p><font size="-1"> 
708
          <input type="TEXT" name="keyword2" value="[%keyword2%]" size="40">
709
          </font></p>
710
      </td>
711
      <td width="18%" valign="TOP"> 
712
        <p> <font size="-1">
713
          <select name="kwType2">
714
	    [% IF form == 're_entry' %]
715
	     	<option selected>[%kwType2%]</option>
716
	    [% END %]
717
	    <option>none</option>
718
            <option>theme</option>
719
            <option>place</option>
720
            <option>stratum</option>
721
            <option>temporal</option>
722
            <option>taxonomic</option>
723
          </select>
724
          </font></p>
725
      </td>
726
      <td width="48%" valign="TOP"> 
727
        <p> <font size="-1">
728
          <select name="kwTh2">
729
	    [% IF form == 're_entry' %]
730
	     	<option selected>[%kwTh2%]</option>
731
	    [% END %]
732
	    <option>none</option>
733
            <option>GCMD</option>
734
          </select>
735
          </font></p>
736
      </td>
737
    </tr>
738
    <tr> 
739
      <td width="34%" valign="TOP"> 
740
        <p><font size="-1"> 
741
          <input type="TEXT" name="keyword3" value="[%keyword3%]" size="40">
742
          </font></p>
743
      </td>
744
      <td width="18%" valign="TOP"> 
745
        <p> <font size="-1">
746
          <select name="kwType3">
747
	    [% IF form == 're_entry' %]
748
	     	<option selected>[%kwType3%]</option>
749
	    [% END %]
750
	    <option>none</option>
751
            <option>theme</option>
752
            <option>place</option>
753
            <option>stratum</option>
754
            <option>temporal</option>
755
            <option>taxonomic</option>
756
          </select>
757
          </font></p>
758
      </td>
759
      <td width="48%" valign="TOP"> 
760
        <p> <font size="-1">
761
          <select name="kwTh3">
762
	    [% IF form == 're_entry' %]
763
	     	<option selected>[%kwTh3%]</option>
764
	    [% END %]
765
	    <option>none</option>
766
            <option>GCMD</option>
767
          </select>
768
          </font></p>
769
      </td>
770
    </tr>
771
    <tr> 
772
      <td width="34%" valign="TOP"> 
773
        <p><font size="-1"> 
774
          <input type="TEXT" name="keyword4" value="[%keyword4%]" size="40">
775
          </font></p>
776
      </td>
777
      <td width="18%" valign="TOP"> 
778
        <p> <font size="-1">
779
          <select name="kwType4">
780
	    [% IF form == 're_entry' %]
781
	     	<option selected>[%kwType4%]</option>
782
	    [% END %]
783
	    <option>none</option>
784
            <option>theme</option>
785
            <option>place</option>
786
            <option>stratum</option>
787
            <option>temporal</option>
788
            <option>taxonomic</option>
789
          </select>
790
          </font></p>
791
      </td>
792
      <td width="48%" valign="TOP"> 
793
        <p> <font size="-1">
794
          <select name="kwTh4">
795
	    [% IF form == 're_entry' %]
796
	     	<option selected>[%kwTh4%]</option>
797
	    [% END %]
798
	    <option>none</option>
799
            <option>GCMD</option>
800
          </select>
801
          </font></p>
802
      </td>
803
    </tr>
804
    <tr> 
805
      <td width="34%" valign="TOP"> 
806
        <p><font size="-1"> 
807
          <input type="TEXT" name="keyword5" value="[%keyword5%]" size="40">
808
          </font></p>
809
      </td>
810
      <td width="18%" valign="TOP"> 
811
        <p> <font size="-1">
812
          <select name="kwType5">
813
	    [% IF form == 're_entry' %]
814
	     	<option selected>[%kwType5%]</option>
815
	    [% END %]
816
	    <option>none</option>
817
            <option>theme</option>
818
            <option>place</option>
819
            <option>stratum</option>
820
            <option>temporal</option>
821
            <option>taxonomic</option>
822
          </select>
823
          </font></p>
824
      </td>
825
      <td width="48%" valign="TOP"> 
826
        <p> <font size="-1">
827
          <select name="kwTh5">
828
	    [% IF form == 're_entry' %]
829
	     	<option selected>[%kwTh5%]</option>
830
	    [% END %]
831
 	    <option>none</option>
832
            <option>GCMD</option>
833
          </select>
834
          </font></p>
835
      </td>
836
    </tr>
837
    <tr> 
838
      <td width="34%" valign="TOP"> 
839
        <p><font size="-1"> 
840
          <input type="TEXT" name="keyword6" value="[%keyword6%]" size="40">
841
          </font></p>
842
      </td>
843
      <td width="18%" valign="TOP"> 
844
        <p> <font size="-1">
845
          <select name="kwType6">
846
	    [% IF form == 're_entry' %]
847
	     	<option selected>[%kwType6%]</option>
848
	    [% END %]
849
	    <option>none</option>
850
            <option>theme</option>
851
            <option>place</option>
852
            <option>stratum</option>
853
            <option>temporal</option>
854
            <option>taxonomic</option>
855
          </select>
856
          </font></p>
857
      </td>
858
      <td width="48%" valign="TOP"> 
859
        <p> <font size="-1">
860
          <select name="kwTh6">
861
	    [% IF form == 're_entry' %]
862
	     	<option selected>[%kwTh6%]</option>
863
	    [% END %]
864
            <option>none</option>	
865
            <option>GCMD</option>
866
          </select>
867
          </font></p>
868
      </td>
869
    </tr>
870
    <tr> 
871
      <td width="34%" valign="TOP"> 
872
        <p><font size="-1"> 
873
          <input type="TEXT" name="keyword7" value="[%keyword7%]" size="40">
874
          </font></p>
875
      </td>
876
      <td width="18%" valign="TOP"> 
877
        <p> <font size="-1">
878
          <select name="kwType7">
879
	    [% IF form == 're_entry' %]
880
	     	<option selected>[%kwType7%]</option>
881
	    [% END %]
882
	    <option>none</option>
883
            <option>theme</option>
884
            <option>place</option>
885
            <option>stratum</option>
886
            <option>temporal</option>
887
            <option>taxonomic</option>
888
          </select>
889
          </font></p>
890
      </td>
891
      <td width="48%" valign="TOP"> 
892
        <p> <font size="-1">
893
          <select name="kwTh7">
894
	    [% IF form == 're_entry' %]
895
	     	<option selected>[%kwTh7%]</option>
896
	    [% END %]
897
            <option>none</option>
898
            <option>GCMD</option>
899
          </select>
900
          </font></p>
901
      </td>
902
    </tr>
903
    <tr> 
904
      <td width="34%" valign="TOP"> 
905
        <p><font size="-1"> 
906
          <input type="TEXT" name="keyword8" value="[%keyword8%]" size="40">
907
          </font></p>
908
      </td>
909
      <td width="18%" valign="TOP"> 
910
        <p> <font size="-1">
911
          <select name="kwType8">
912
	    [% IF form == 're_entry' %]
913
	     	<option selected>[%kwType8%]</option>
914
	    [% END %]
915
	    <option>none</option>
916
            <option>theme</option>
917
            <option>place</option>
918
            <option>stratum</option>
919
            <option>temporal</option>
920
            <option>taxonomic</option>
921
          </select>
922
          </font></p>
923
      </td>
924
      <td width="48%" valign="TOP"> 
925
        <p> <font size="-1">
926
          <select name="kwTh8">
927
	    [% IF form == 're_entry' %]
928
	     	<option selected>[%kwTh8%]</option>
929
	    [% END %]
930
            <option>none</option>
931
            <option>GCMD</option>
932
          </select>
933
          </font></p>
934
      </td>
935
    </tr>
936
    <tr> 
937
      <td width="34%" valign="TOP"> 
938
        <p><font size="-1"> 
939
          <input type="TEXT" name="keyword9" value="[%keyword9%]" size="40">
940
          </font></p>
941
      </td>
942
      <td width="18%" valign="TOP"> 
943
        <p> <font size="-1">
944
          <select name="kwType9">
945
	    [% IF form == 're_entry' %]
946
	     	<option selected>[%kwType9%]</option>
947
	    [% END %]
948
 	    <option>none</option>
949
            <option>theme</option>
950
            <option>place</option>
951
            <option>stratum</option>
952
            <option>temporal</option>
953
            <option>taxonomic</option>
954
          </select>
955
          </font></p>
956
      </td>
957
      <td width="48%" valign="TOP"> 
958
        <p> <font size="-1">
959
          <select name="kwTh9">
960
	    [% IF form == 're_entry' %]
961
	     	<option selected>[%kwTh9%]</option>
962
	    [% END %]    
963
            <option>none</option>
964
            <option>GCMD</option>
965
          </select>
966
          </font></p>
967
      </td>
968
    </tr>
969
  </table>
970
  <br>
971
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
972
  <a
973
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TemporalCoverageOfData"
974
   target="guide">TEMPORAL COVERAGE OF DATA</a>
975
	</font></b></font> 
976
  <table cellspacing="0" border="0" cellpadding="9" width="760"
977
bgcolor="#c6d6e7">
978
    <tr> 
979
      <td valign="TOP" colspan="3"> 
980
        <p><font size="-1"><b>Beginning Date of Data Set:</b></font></p>
981
      </td>
982
    </tr>
983
    <tr> 
984
      <td width="33%" valign="TOP"> 
985
        <p><font size="-1"> 
986
          <input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4">
987
          <b><font color="#ff0000">*</font>Year (YYYY)</b></font></p>
988
      </td>
989
      <td width="33%" valign="TOP"> 
990
        <p><font size="-1"> 
991
          <input type="TEXT" name="beginningMonth" value="[%beginningMonth%]" size="4" maxlength="2">
992
          <b><font color="#ff0000">*</font>Month(MM)</b></font></p>
993
      </td>
994
      <td width="33%" valign="TOP"> 
995
        <p><font size="-1"> 
996
          <input type="TEXT" name="beginningDay" value="[%beginningDay%]" size="4" maxlength="2">
997
          <b><font color="#ff0000">*</font>Day (DD)</b></font></p>
998
      </td>
999
    </tr>
1000
    <tr> 
1001
      <td valign="TOP" colspan="3"> 
1002
        <p><font size="-1"><b>Ending Date of Data Set (provide no ending date 
1003
          at all if your data set is open-ended):</b></font></p>
1004
      </td>
1005
    </tr>
1006
    <tr> 
1007
      <td width="33%" valign="TOP"> 
1008
        <p><font size="-1"> 
1009
          <input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4">
1010
          <b>Year (YYYY)</b></font></p>
1011
      </td>
1012
      <td width="33%" valign="TOP"> 
1013
        <p><font size="-1"> 
1014
          <input type="TEXT" name="endingMonth" value="[%endingMonth%]" size="4" maxlength="2">
1015
          <b>Month(MM)</b></font></p>
1016
      </td>
1017
      <td width="33%" valign="TOP"> 
1018
        <p><font size="-1"> 
1019
          <input type="TEXT" name="endingDay" value="[%endingDay%]" size="4" maxlength="2">
1020
          <b>Day (DD)</b></font></p>
1021
      </td>
1022
    </tr>
1023
  </table>
1024
  <br>
1025
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
1026
  <a
1027
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#SpatialCoverageOfData"
1028
   target="guide">SPATIAL COVERAGE OF DATA</a>
1029
	</font></b></font> 
1030
  <table cellspacing="0" border="0" cellpadding="9" width="760"
1031
bgcolor="#c6d6e7">
1032
    <tr> 
1033
      <td valign="TOP" colspan="4"> 
1034
        <p><font size="-1"><b>Coordinates (in Degrees, Minutes and Seconds; at 
1035
          least 1 lat./long. pair is required):</b></font></p>
1036
      </td>
1037
    </tr>
1038
    <tr> 
1039
      <td valign="TOP" colspan="4"> 
1040
        <p><font size="-1"><b>Enter the first lat./long. pair only to indicate 
1041
          a point location. Enter both coordinate pairs to indicate a bounding 
1042
          box. In case of a bounding box, the first coordinate pair is the northwest 
1043
          corner and the second coordinate pair is the southeast corner of the 
1044
          bounding box.</b></font></p>
1045
      </td>
1046
    </tr>
1047
[% IF showSiteList == 'true' %]
1048
    <tr> 
1049
      <td valign="TOP" colspan="4" class="tablepanel"><font size="-1" color="#ff0000"> 
1050
        <input
1051
type="CHECKBOX" name="useSiteCoord" [%useSiteCoord%]>
1052
        Use [% lsite %] coordinates. (This indicates that the data were collected 
1053
        at the [% lsite %]. If you check this box, you don't need to fill in the lat./long. 
1054
        fields below).</font> </td>
1055
    </tr>
1056
[% END %]
1057
    <tr> 
1058
      <td width="18%" valign="TOP"> 
1059
        <p><font size="-1"><b><font color="#ff0000">*</font>Latitude</b></font></p>
1060
      </td>
1061
      <td width="20%" valign="TOP"> 
1062
        <p><font size="-1">&nbsp;North/South</font></p>
1063
      </td>
1064
      <td width="20%" valign="TOP"> 
1065
        <p><font size="-1"><b><font color="#ff0000">*</font>Longitude</b></font></p>
1066
      </td>
1067
      <td width="42%" valign="TOP"> 
1068
        <p><font size="-1">&nbsp;West/East</font></p>
1069
      </td>
1070
    </tr>
1071
    <tr> 
1072
      <td width="20%" valign="TOP"> 
1073
        <p><font size="-1"> 
1074
          <input type="TEXT" name="latDeg1" value="[%latDeg1%]" size="3" maxlength="3">
1075
          <input type="TEXT" name="latMin1" value="[%latMin1%]" size="2" maxlength="2">
1076
          <input type="TEXT" name="latSec1" value="[%latSec1%]" size="2" maxlength="2">
1077
          </font></p>
1078
      </td>
1079
      <td width="20%" valign="TOP"> 
1080
        <p> <font size="-1">
1081
          <select name="hemisphLat1">
1082
	    [% IF form == 're_entry' %]
1083
	    	<option selected>[%hemisphLat1%]</option>
1084
	    [% END %]
1085
            <option>N</option>
1086
            <option>S</option>
1087
          </select>
1088
          </font></p>
1089
      </td>
1090
      <td width="20%" valign="TOP"> 
1091
        <p><font size="-1"> 
1092
          <input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3">
1093
          <input type="TEXT" name="longMin1" value="[%longMin1%]" size="2" maxlength="2">
1094
          <input type="TEXT" name="longSec1" value="[%longSec1%]" size="2" maxlength="2">
1095
          </font></p>
1096
      </td>
1097
      <td width="40%" valign="TOP"> 
1098
        <p> <font size="-1">
1099
          <select name="hemisphLong1">
1100
	    [% IF form == 're_entry' %]
1101
	    	<option selected>[%hemisphLong1%]</option>
1102
	    [% END %]
1103
            <option>W</option>
1104
            <option>E</option>
1105
          </select>
1106
          </font></p>
1107
      </td>
1108
    </tr>
1109
    <tr> 
1110
      <td valign="TOP" colspan="4"> 
1111
        <p><font size="-1"><b>The second lat./long. pair, if provided, indicates 
1112
          the southeast corner of a bounding box.</b></font></p>
1113
      </td>
1114
    </tr>
1115
    <tr> 
1116
      <td width="18%" valign="TOP"> 
1117
        <p><font size="-1"><b>Latitude</b></font></p>
1118
      </td>
1119
      <td width="20%" valign="TOP"> 
1120
        <p><font size="-1">&nbsp;North/South</font></p>
1121
      </td>
1122
      <td width="20%" valign="TOP"> 
1123
        <p><font size="-1"><b>Longitude</b></font></p>
1124
      </td>
1125
      <td width="42%" valign="TOP"> 
1126
        <p><font size="-1">West/East</font></p>
1127
      </td>
1128
    </tr>
1129
    <tr> 
1130
      <td width="20%" valign="TOP"> 
1131
        <p><font size="-1"> 
1132
          <input type="TEXT" name="latDeg2" value="[%latDeg2%]" size="3" maxlength="3">
1133
          <input type="TEXT" name="latMin2" value="[%latMin2%]" size="2" maxlength="2">
1134
          <input type="TEXT" name="latSec2" value="[%latSec2%]" size="2" maxlength="2">
1135
          </font></p>
1136
      </td>
1137
      <td width="20%" valign="TOP"> 
1138
        <p> <font size="-1">
1139
          <select name="hemisphLat2">
1140
	    [% IF form == 're_entry' %]	
1141
	    	<option selected>[%hemisphLat2%]</option>
1142
            [% END %]
1143
	    <option>N</option>
1144
            <option>S</option>
1145
          </select>
1146
          </font></p>
1147
      </td>
1148
      <td width="20%" valign="TOP"> 
1149
        <p><font size="-1"> 
1150
          <input type="TEXT" name="longDeg2" value="[%longDeg2%]" size="3" maxlength="3">
1151
          <input type="TEXT" name="longMin2" value="[%longMin2%]" size="2" maxlength="2">
1152
          <input type="TEXT" name="longSec2" value="[%longSec2%]" size="2" maxlength="2">
1153
          </font></p>
1154
      </td>
1155
      <td width="40%" valign="TOP"> 
1156
        <p> <font size="-1">
1157
          <select name="hemisphLong2">
1158
	    [% IF form == 're_entry' %]
1159
	    	<option selected>[%hemisphLong2%]</option>
1160
	    [% END %]
1161
            <option>W</option>
1162
            <option>E</option>
1163
          </select>
1164
          </font></p>
1165
      </td>
1166
    </tr>
1167
  </table>
1168

    
1169
  [% IF cfg == 'nceas' %]
1170
  <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Methods" target="guide">METHODS</a>
1171
  <table cellspacing="0" border="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1172
    <tbody>
1173
    <tr> 
1174
      <td valign="top" colspan="3"> 
1175
        <p class="label">Data Collection Methods</p>
1176
      </td>
1177
    </tr>
1178
    <tr> 
1179
      <td valign="top"> 
1180
        <p>
1181
          <input type="text" name="methodTitle" value="[%methodTitle%]" size="40">
1182
          <span class="label">Title of Method</span>
1183
        </p>
1184
        <p>
1185
          <span class="label">Method Description</span>
1186
        [% IF methodPara.size < 1 %]
1187
          <br>
1188
          <textarea rows="5" cols="80" name="methodPara"></textarea>
1189
        [% END %]
1190
        [% FOREACH para = methodPara %]
1191
          <br>
1192
          <textarea rows="5" cols="80" name="methodPara">[% para %]</textarea>
1193
        [% END %]
1194
        </p>
1195
        <p>
1196
          <input type="button" value="Add paragraph" id="addparabutton1"
1197
                 onClick="addParagraph()">
1198
        </p>
1199
      </td>
1200
     </tbody>
1201
   </table>
1202
  [% END %]
1203

    
1204
  <p><b><font size="-1" color="#0000ff">
1205
  <a
1206
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetContactAddress"
1207
   target="guide">DATA SET CONTACT ADDRESS</a>
1208
	</font></b></p>
1209
  <table border="0" cellspacing="0" cellpadding="9" width="760" bgcolor="#c6d6e7">
1210
    <tr> 
1211
      <td valign="TOP" colspan="3"><font size="-1" color="#ff0000"> 
1212
        <input type="CHECKBOX" name="useOrigAddress" [%useOrigAddress%]>
1213
        Use the same address as DATA SET ORIGINATOR above (If you check this box, 
1214
        you don't need to fill in the address fields below). </font></td>
1215
    </tr>
1216
    <tr> 
1217
      <td valign="TOP" colspan="8"> 
1218
        <p><font size="-1"> 
1219
          <input type="TEXT" name="origNamefirstContact" value="[%origNamefirstContact%]" size="40">
1220
          <b><font color="#ff0000">*</font>First Name</b></font></p>
1221
        <p><font size="-1"> 
1222
          <input type="TEXT" name="origNamelastContact" value="[%origNamelastContact%]" size="40">
1223
          <b><font color="#ff0000">*</font>Last Name</b></font></p>
1224
        <p><font size="-1"> 
1225
          <input type="TEXT" name="origNameOrgContact" value="[%origNameOrgContact%]" size="60">
1226
          <b>Organization Name</b></font></p>
1227
        <p><font size="-1"><b>Originator Address Information (for Individual or 
1228
          Organization):</b></font></p>
1229
        <p><font size="-1"> 
1230
          <input type="TEXT" name="origEmailContact" value="[%origEmailContact%]">
1231
          <b>E-Mail</b></font></p>
1232
        <p><font size="-1"> 
1233
          <input type="TEXT" name="origPhoneContact" value="[%origPhoneContact%]">
1234
          <b>Phone</b></font></p>
1235
        <p><font size="-1"> 
1236
          <input type="TEXT" name="origFAXContact" value="[%origFAXContact%]">
1237
          <b>FAX</b> </font></p>
1238
        <p><font size="-1"><b>Delivery information (number, street, unit, etc., 
1239
          comma-separated)</b></font></p>
1240
        <p><font size="-1"> 
1241
          <textarea rows="5" cols="60" name="origDeliveryContact">[%origDeliveryContact%]</textarea>
1242
          </font></p>
1243
        <p><font size="-1"> 
1244
          <input type="TEXT" name="origCityContact" value="[%origCityContact%]" size="50">
1245
          <b>City</b></font></p>
1246
        <p> 
1247
          <select name="origStateContact">
1248
	    [% IF form == 're_entry' %]	
1249
            	<option>[%origStateContact%]</option>
1250
	    [% ELSE %]
1251
                <option>Select state here.</option>
1252
            [% END %]
1253
	        <option>Alabama</option>
1254
            <option>Alaska</option>
1255
            <option>American Samoa</option>
1256
            <option>Arizona</option>
1257
            <option>Arkansas</option>
1258
            <option>California</option>
1259
            <option>Colorado</option>
1260
            <option>Connecticut</option>
1261
            <option>Delaware</option>
1262
            <option>District of Columbia</option>
1263
            <option>Federated States of Micronesia</option>
1264
            <option>Florida</option>
1265
            <option>Georgia</option>
1266
            <option>Guam</option>
1267
            <option>Hawaii</option>
1268
            <option>Idaho</option>
1269
            <option>Illinois</option>
1270
            <option>Indiana</option>
1271
            <option>Iowa</option>
1272
            <option>Kansas</option>
1273
            <option>Kentucky</option>
1274
            <option>Louisiana</option>
1275
            <option>Maine</option>
1276
            <option>Marshall Islands</option>
1277
            <option>Maryland</option>
1278
            <option>Massachusetts</option>
1279
            <option>Michigan</option>
1280
            <option>Minnesota</option>
1281
            <option>Mississippi</option>
1282
            <option>Missouri</option>
1283
            <option>Montana</option>
1284
            <option>Nebraska</option>
1285
            <option>Nevada</option>
1286
            <option>New Hampshire</option>
1287
            <option>New Jersey</option>
1288
            <option>New Mexico</option>
1289
            <option>New York</option>
1290
            <option>North Carolina</option>
1291
            <option>North Dakota</option>
1292
            <option>Northern Mariana Islands</option>
1293
            <option>Ohio</option>
1294
            <option>Oklahoma</option>
1295
            <option>Oregon</option>
1296
            <option>Palau</option>
1297
            <option>Pennsylvania</option>
1298
            <option>Puerto Rico</option>
1299
            <option>Rhode Island</option>
1300
            <option>South Carolina</option>
1301
            <option>South Dakota</option>
1302
            <option>Tennessee</option>
1303
            <option>Texas</option>
1304
            <option>Utah</option>
1305
            <option>Vermont</option>
1306
            <option>Virgin Islands</option>
1307
            <option>Virginia</option>
1308
            <option>Washington</option>
1309
            <option>West Virginia</option>
1310
            <option>Wisconsin</option>
1311
            <option>Wyoming</option>
1312
          </select>
1313
          <b><font size="-1">State</font></b>&nbsp;&nbsp;&nbsp;
1314
          <font size="-1"> 
1315
          <input type="TEXT" name="origStateOtherContact" value="[%origStateOtherContact%]">
1316
          <b>Other State or Province</b></font>
1317
          </p>
1318
        <p><font size="-1"> 
1319
          <input type="TEXT" name="origZIPContact" size="10" value="[%origZIPContact%]">
1320
          <b>ZIP</b></font></p>
1321
        <p><font size="-1"> 
1322
          <input type="TEXT" name="origCountryContact" value="[%origCountryContact%]">
1323
          <b>Country</b></font></p>
1324
      </td>
1325
    </tr>
1326
  </table>
1327
  <br>
1328
  <p align="left"><font size="4" color="0000ff"><b><font size="-1">
1329
  <a
1330
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DistributionIinformation"
1331
   target="guide">DISTRIBUTION INFORMATION</a>
1332
	</font></b></font> 
1333
  <table cellspacing="0" border="0" cellpadding="9" width="760"
1334
bgcolor="#c6d6e7">
1335
    <tr> 
1336
      <td width="50%" valign="TOP"> 
1337

    
1338

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

    
1345
        <p><font size="-1"><b><font color="#ff0000">*</font>Data Medium:</b></font></p>
1346
        <p> <font size="-1">
1347
          <select name="dataMedium">
1348
	    [% IF form == 're_entry' %]	
1349
	    	<option selected>[%dataMedium%]</option>
1350
	    [% ELSE %]
1351
                <option>Select type of medium here.</option>
1352
            [% END %]
1353
            <option>digital</option>
1354
            <option>hardcopy</option>
1355
            <option>other</option>
1356
          </select>
1357
          </font></p>
1358
        <p><font size="-1"><b>If you selected "other" for Data Medium, enter detail 
1359
          below</b></font></p>
1360
        <p><font size="-1"> 
1361
          <input type="TEXT" name="dataMediumOther" value="[%dataMediumOther%]" size="40">
1362
          </font></p>
1363
      </td>
1364
    </tr>
1365
<!--
1366
  <table cellspacing="0" border="0" cellpadding="9" width="760"
1367
bgcolor="#c6d6e7">
1368
-->
1369
    <tr> 
1370
      <td width="50%" valign="TOP"> 
1371
        <p> <font size="-1"><b><font color="#ff0000">*</font>Use Constraints:</b></font> 
1372
        </p>
1373
        <p> <font size="-1">
1374
          <select name="useConstraints">
1375
	    [% IF form == 're_entry' %]	
1376
	        <option selected>[%useConstraints%]</option>
1377
	    [% ELSE %]
1378
                <option>Select restrictions here.</option>
1379
	    [% END %]
1380
            <option>no restrictions</option>
1381
            <option>obtain permission from originator(s)</option>
1382
            <option>other</option>
1383
          </select>
1384
          </font></p>
1385
        <p><font size="-1"><b>If you selected "other" for Use Constraints, enter 
1386
          detail below.</b></font></p>
1387
        <p><font size="-1"> 
1388
          <input type="TEXT" name="useConstraintsOther" value="[%useConstraintsOther%]" size="40">
1389
          </font></p>
1390
      </td>
1391
    </tr>
1392
<!--
1393
  </table>
1394
-->
1395
    <tr> 
1396
      <td> 
1397
        <p align="left"><font size="-1"> 
1398
          <input type="TEXT" name="url" value="[%url%]" size="50">
1399
          <b>URL (for location of data set or of more metadata)</b></font></p>
1400

    
1401
        <p align="left"><font size="-1"><b>
1402
  <a
1403
   href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalInformation"
1404
   target="guide">Additional Information/Remarks:</a>	
1405
	</b></font></p>
1406
        <p align="left"><font size="-1"> 
1407
          <textarea rows="5" cols="60" name="addComments">[%addComments%]</textarea>
1408
          </font></p>
1409
      </td>
1410
    </tr>
1411
  </table>
1412
  <br>
1413
  <div align="center"> 
1414
    <table width="760" border="0" cellpadding="9" align="left" bgcolor="#C6d6e7" cellspacing="0">
1415
      <tr> 
1416
        <td width="760"> 
1417
          <div align="left"> <font color="#FF0000" size="-1">NOTE: You must submit 
1418
            your data in order for these to be entered in the Data Registry!</font> 
1419
            <p> 
1420
              <input type="SUBMIT" value="Submit Entry" name="SUBMIT">
1421
              <input type="RESET" name="RESET">
1422
            </p>
1423
          </div>
1424
        </td>
1425
      </tr>
1426
    </table>
1427
    <p>&nbsp;</p>
1428
    <div align="left"> </div>
1429
    <p align="left"> 
1430
    <p align="left">&nbsp; </p>
1431
    <p align="left">&nbsp; </p>
1432
  </div>
1433
</form>
1434
<p>&nbsp;</p>
1435
<p>&nbsp;</p>
1436

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