Project

General

Profile

1 7867 leinfelder
[% INCLUDE $templates.header %]
2
3
  <script language="JavaScript">
4
	    var contextUrl = '[% contextUrl %]';
5
	</script>
6 7868 leinfelder
  <script language="JavaScript" type="text/javascript" src="[% styleCommonPath %]/templates/metacatui/entryForm.js">
7 7867 leinfelder
  </script>
8
9 7889 leinfelder
	<!-- CONTENT SECTION
10
    ======================================================================= -->
11
	<article id="EntryForm">
12
		<div class="container">
13
14
			<div class="row-fluid">
15
16
				[% IF form != 're_entry' %]
17
18
					<h2>Upload your data</h2>
19
					<p class="lead">
20
						Use this form to submit a new data package to the repository.
21
					</p>
22
23
				[% ELSE %]
24
25
					<h2>Edit your data</h2>
26
					<p class="lead">
27
						Use this form to edit a data package submitted earlier.
28
					</p>
29
30
					[%IF docid !=''%]
31
						<p>
32
							The ID of this data set is: <a href="[% metacatUrl %]?action=read&qformat=[% cfg %]&docid=[% docid %]">[% docid %]</a>
33
						</p>
34
\					[%END%]
35
36
				[% END %]
37
38
				<p>
39
					Please have a look at the
40
					<a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide" target="guide">
41
					Guide for Completing the Data Repository Form</a>
42
	        		before you start filling in this 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>
47
					If you have any questions, comments or problems
48
					regarding this form, please contact the repository administrator at
49
					<a href="mailto:[% email.recipient %]">[% email.recipient %]</a>
50
				</p>
51
				<p class="text-info">*Denotes a required field.</p>
52
			</div>
53 7867 leinfelder
54 7896 leinfelder
			<!--  the main form -->
55
			<div class="row-fluid">
56
57
<form action="[% cgiPrefix %]/register-dataset.cgi" enctype="multipart/form-data" method="post" class="form-horizontal">
58 7867 leinfelder
  <input type="hidden" name="cfg" value="[% cfg %]">
59
  <input type="hidden" name="docid" value="[% docid %]">
60
  <input type="hidden" name="stage" value="insert">
61
62 7896 leinfelder
  				<div class="accordion" id="entryFormAccordian">
63
					<div class="accordion-group">
64
65
						<!-- SUBMITTER -->
66
						<div class="accordion-heading">
67
							<a class="accordion-toggle" data-toggle="collapse" data-target="#collapseSubmitter" href="#none">
68
								Submitter
69
							</a>
70
							<a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Submitter"><i class="icon-question-sign"></i></a>
71
						</div>
72
						<div id="collapseSubmitter" class="accordion-body collapse in">
73
							<div class="accordion-inner">
74
								<!--  the INPUT -->
75
								<div class="control-group">
76
									<label class="control-label" for="providerGivenName">*First Name</label>
77
									<div class="controls">
78
										<input type="text" name="providerGivenName" value="[%providerGivenName%]">
79
									</div>
80
								</div>
81
								<div class="control-group">
82
									<label class="control-label" for="providerSurName">*Last Name</label>
83
									<div class="controls">
84
										<input type="text" name="providerSurName" value="[%providerSurName%]">
85
									</div>
86
								</div>
87
88
						    </div>
89
						</div>
90
91
						<!-- BASIC -->
92
						<div class="accordion-heading">
93
							<a class="accordion-toggle" data-toggle="collapse" data-target="#collapseBasic" href="#none">
94
								Basic Information
95
							</a>
96
							<a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#BasicInformation"><i class="icon-question-sign"></i></a>
97
						</div>
98
						<div id="collapseBasic" class="accordion-body collapse in">
99
							<div class="accordion-inner">
100
								<!--  the INPUT -->
101
								<div class="control-group">
102
									<label class="control-label" for="title">*Data Set Title</label>
103
									<div class="controls">
104
										<input type="text" name="title" value="[%title%]">
105
									</div>
106
								</div>
107
								[% IF show.siteList == 'true' %]
108
									<div class="control-group">
109
										<label class="control-label" for="site">*[% config.site | ucfirst %] Name</label>
110
										<div class="controls">
111
											<select name="site">
112
												[% IF form == 're_entry' %]
113
													<option selected>[%site%]</option>
114
												[% ELSE %]
115
													<option>Select your [% config.site %] here.</option>
116
												[% END %]
117
												[% FOREACH site = siteList %]
118
													<option>[% site %]</option>
119
												[% END %]
120
											</select>
121
										</div>
122
									</div>
123
								[% END %]
124
								[% IF show.wgList == 'true' %]
125
									<div class="control-group">
126
										<label class="control-label" for="site">*NCEAS Project(s):</label>
127
										<div class="controls">
128
											<select name="wg" multiple="multiple" size="5">
129
												[% FOREACH project = projects %]
130
													[% SET pname = $project.3 %]
131
													[% IF pname.length > 50 %]
132
														[% SET sname = $project.4 %]
133
													[% END %]
134
													[% SET label = "NCEAS ${project.0}: ${project.1}: $project.4" %]
135
													[% SET value = "NCEAS ${project.0}: ${project.1}: $project.3" %]
136
													[% SET sel = '' %]
137
													[% FOREACH group = wg %]
138
														[% IF group == value %]
139
															[% SET sel = 'selected="selected"' %]
140
														[% END %]
141
													[% END %]
142
													<option value="[% value %]" [% sel %]>[% label %]</option>
143
												[% END %]
144
											</select>
145
										</div>
146
									</div>
147
								[% END %]
148
								[% IF show.organization == 'true' %]
149
									<div class="control-group">
150
										<label class="control-label" for="site">*Organization</label>
151
										<div class="controls">
152
											<input type="text" name="site" value="[%site%]">
153
										</div>
154
									</div>
155
								[% END %]
156
157
						    </div>
158
						</div>
159 7898 leinfelder
160
						<!-- PRINCIPAL DATA SET OWNER -->
161
						<div class="accordion-heading">
162 7902 leinfelder
							<a class="accordion-toggle" data-toggle="collapse" data-target="#collapseOwner" href="#none">
163 7898 leinfelder
								Data Set Owner
164
							</a>
165
							<a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetOriginator"><i class="icon-question-sign"></i></a>
166
						</div>
167 7902 leinfelder
						<div id="collapseOwner" class="accordion-body collapse in">
168 7898 leinfelder
							<div class="accordion-inner">
169
								<!--  the INPUT -->
170
								<div class="control-group">
171
									<label class="control-label" for="origNamefirst0">*First Name</label>
172
									<div class="controls">
173
										<input type="text" name="origNamefirst0" value="[%origNamefirst0%]">
174
									</div>
175
								</div>
176
								<div class="control-group">
177
									<label class="control-label" for="origNamelast0">*Last Name</label>
178
									<div class="controls">
179
										<input type="text" name="origNamelast0" value="[%origNamelast0%]">
180
									</div>
181
								</div>
182
								<div class="control-group">
183
									<label class="control-label" for="origNameOrg">Organization Name</label>
184
									<div class="controls">
185
										<input type="text" name="origNameOrg" value="[%origNameOrg%]">
186
									</div>
187
								</div>
188
								<div class="control-group">
189
									<label class="control-label" for="origEmail">Email</label>
190
									<div class="controls">
191
										<input type="text" name="origEmail" value="[%origEmail%]">
192
									</div>
193
								</div>
194
								<div class="control-group">
195
									<label class="control-label" for="origPhone">Phone</label>
196
									<div class="controls">
197
										<input type="text" name="origPhone" value="[%origPhone%]">
198
									</div>
199
								</div>
200
								<div class="control-group">
201
									<label class="control-label" for="origFAX">Fax</label>
202
									<div class="controls">
203
										<input type="text" name="origFAX" value="[%origFAX%]">
204
									</div>
205
								</div>
206
								<div class="control-group">
207
									<label class="control-label" for="origDelivery">Street Address</label>
208
									<div class="controls">
209
										<textarea id="origDelivery" name="origDelivery">[%origDelivery%]</textarea>
210
										<span class="help-block">(number, street, unit, etc.; comma-separated)</span>
211
									</div>
212
								</div>
213
								<div class="control-group">
214
									<label class="control-label" for="origCity">City</label>
215
									<div class="controls">
216
										<input type="text" name="origCity" value="[%origCity%]">
217
									</div>
218
								</div>
219
								<div class="control-group">
220
									<label class="control-label" for="origState">U.S. State or Territory</label>
221
									<div class="controls">
222
										<select name="origState" id="origState">
223
											[% IF form == 're_entry' %]
224
												<option selected>[%origState%]</option>
225
											[% ELSE %]
226
												<option>Select state or territory here.</option>
227
											[% END %]
228
											<option>Alabama</option>
229
											<option>Alaska</option>
230
											<option>American Samoa</option>
231
											<option>Arizona</option>
232
											<option>Arkansas</option>
233
											<option>California</option>
234
											<option>Colorado</option>
235
											<option>Connecticut</option>
236
											<option>Delaware</option>
237
											<option>District of Columbia</option>
238
											<option>Florida</option>
239
											<option>Georgia</option>
240
											<option>Guam</option>
241
											<option>Hawaii</option>
242
											<option>Idaho</option>
243
											<option>Illinois</option>
244
											<option>Indiana</option>
245
											<option>Iowa</option>
246
											<option>Kansas</option>
247
											<option>Kentucky</option>
248
											<option>Louisiana</option>
249
											<option>Maine</option>
250
											<option>Maryland</option>
251
											<option>Massachusetts</option>
252
											<option>Michigan</option>
253
											<option>Minnesota</option>
254
											<option>Mississippi</option>
255
											<option>Missouri</option>
256
											<option>Montana</option>
257
											<option>Nebraska</option>
258
											<option>Nevada</option>
259
											<option>New Hampshire</option>
260
											<option>New Jersey</option>
261
											<option>New Mexico</option>
262
											<option>New York</option>
263
											<option>North Carolina</option>
264
											<option>North Dakota</option>
265
											<option>Northern Mariana Islands</option>
266
											<option>Ohio</option>
267
											<option>Oklahoma</option>
268
											<option>Oregon</option>
269
											<option>Pennsylvania</option>
270
											<option>Puerto Rico</option>
271
											<option>Rhode Island</option>
272
											<option>South Carolina</option>
273
											<option>South Dakota</option>
274
											<option>Tennessee</option>
275
											<option>Texas</option>
276
											<option>Utah</option>
277
											<option>Vermont</option>
278
											<option>Virgin Islands</option>
279
											<option>Virginia</option>
280
											<option>Washington</option>
281
											<option>West Virginia</option>
282
											<option>Wisconsin</option>
283
											<option>Wyoming</option>
284
										</select>
285
									</div>
286
								</div>
287
								<div class="control-group">
288
									<label class="control-label" for="origStateOther">Other State/Province</label>
289
									<div class="controls">
290
										<input type="text" name="origStateOther" value="[%origStateOther%]">
291
									</div>
292
								</div>
293
								<div class="control-group">
294
									<label class="control-label" for="origZip">Postal Code</label>
295
									<div class="controls">
296
										<input type="text" name="origZip" value="[%origZip%]">
297
									</div>
298
								</div>
299
								<div class="control-group">
300
									<label class="control-label" for="origCountry">Country</label>
301
									<div class="controls">
302
										<input type="text" name="origCountry" value="[%origCountry%]">
303
									</div>
304
								</div>
305
306
307
						    </div>
308
						</div>
309 7899 leinfelder
310
						<!-- ASSOCIATED PARTIES -->
311
						<div class="accordion-heading">
312
							<a class="accordion-toggle" data-toggle="collapse" data-target="#collapseParties" href="#none">
313
								Associated Parties
314
							</a>
315
							<a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#AdditionalOriginators"><i class="icon-question-sign"></i></a>
316
						</div>
317
						<div id="collapseParties" class="accordion-body collapse in">
318
							<div class="accordion-inner">
319 7900 leinfelder
320
								<div class="control-group">
321
									<label class="control-label" for="aoFirstName">First Name</label>
322
									<div class="controls">
323
										<input type="text" name="aoFirstName" id="AONameFirst"">
324
									</div>
325
								</div>
326
								<div class="control-group">
327
									<label class="control-label" for="aoLastName">Last Name</label>
328
									<div class="controls">
329
										<input type="text" name="aoLastName" id="AONameLast"">
330
									</div>
331
								</div>
332
								<div class="control-group">
333
									<label class="control-label" for="aoRole">Role</label>
334
									<div class="controls">
335
										<select id="AORole" name="aoRole">
336
								            <option>Co-owner</option>
337
								            <option>Custodian/Steward</option>
338
								            <option>Metadata Provider</option>
339
								      		<option>User</option>
340
								        </select>
341
									</div>
342
								</div>
343
								<div class="control-group">
344
									<label class="control-label" for="addaobutton1">More?</label>
345
									<div class="controls">
346
										<input type="button" value="Add Associated Party" id="addaobutton1" onClick="addAssociatedParty()">
347
									</div>
348
								</div>
349 7901 leinfelder
								<div class="control-group">
350
									<label class="control-label" for="associatePartyTable"></label>
351
									<div class="controls">
352
										<table id="associatePartyTable">
353
										    [% numAO = 0 %]
354
										    [% IF aoCount %]
355
										        [% numAO = aoCount %]
356
										        <tr class="sectbody" id="aoHRRow">
357
										            <td colSpan="6">
358
										                <hr width = "85%"/>
359
										            </td>
360
										        </tr>
361
										    [% END %]
362
										    [% cnt = 1 %]
363
										    [% WHILE cnt < numAO%]
364
365
										        <tr class="sectbody">
366
										            [% SET aofn = "origNamefirst${cnt}" %]
367
										            [% SET aoln = "origNamelast${cnt}" %]
368
										            [% SET aorole = "origRole${cnt}" %]
369
370
										            <td class="rightCol">
371
										                <a style="cursor:pointer">
372
										                    <img onClick="cleanTextNodes('aoHRRow', 'addaorow');moveUpRow(event)"
373
										                    src="[% contextUrl %]/style/images/previous.gif"
374
										                    alt="Move Up" border="0"/>
375
										                </a>
376
										                <a style="cursor:pointer">
377
										                    <img onClick="cleanTextNodes('aoHRRow', 'addaorow');moveDownRow(event, 'addaorow')"
378
										                    src="[% contextUrl %]/style/images/next.gif"
379
										                    alt="Move Down" border="0"/>
380
										                </a>
381
										                <a style="cursor:pointer">
382
										                    <img src="[% contextUrl %]/style/images/delete.gif"
383
										                    onClick="delRow(event)" alt="Delete" border="0"/>
384
										                </a>
385
										            </td>
386
										            <td colspan="5" align ="left" style="cursor:pointer"
387
										                onClick="aoEditRow(event, 0, '[%$aofn%]', '[%$aoln%]' , '[%$aorole%]')">
388
										                [%$aofn%] [%$aoln%] (Role: [%$aorole%])
389
										                <input name="aoFirstName" type="hidden" value="[%$aofn%]"/>
390
										                <input name="aoLastName" type="hidden" value="[%$aoln%]"/>
391
										                <input name="aoRole" type="hidden" value="[%$aorole%]"/>
392
										            </td>
393
										        </tr>
394
										        [% cnt = cnt + 1 %]
395
										    [% END %]
396
										    <input type="hidden" name="aoCount" value="[%numAO%]" id="aoCount">
397
										    <tr class="sectbody" id="addaorow"><td colspan=6 /></tr>
398
										</table>
399
									</div>
400
								</div>
401 7902 leinfelder
402
						    </div>
403
						</div>
404
405
						<!-- ABSTRACT -->
406
						<div class="accordion-heading">
407
							<a class="accordion-toggle" data-toggle="collapse" data-target="#collapseAbstract" href="#none">
408
								Abstract
409
							</a>
410
							<a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetAbstract"><i class="icon-question-sign"></i></a>
411
						</div>
412
						<div id="collapseAbstract" class="accordion-body collapse in">
413
							<div class="accordion-inner">
414
								<!--  the INPUT -->
415
								<div class="control-group">
416
									<label class="control-label" for="abstract">*Data Set Abstract</label>
417
									<div class="controls">
418
										<textarea rows="6" cols="60" name="abstract">[%abstract%]</textarea>
419
										<span class="help-block">(~350 words)
420
									</div>
421
								</div>
422 7899 leinfelder
423
						    </div>
424
						</div>
425 7903 leinfelder
426
						<!-- TEMPLATE -->
427
						<div class="accordion-heading">
428
							<a class="accordion-toggle" data-toggle="collapse" data-target="#collapseTemplate" href="#none">
429
								Template
430
							</a>
431
							<a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#BasicInformation"><i class="icon-question-sign"></i></a>
432
						</div>
433
						<div id="collapseTemplate" class="accordion-body collapse in">
434
							<div class="accordion-inner">
435
								<!--  the INPUT -->
436
								<div class="control-group">
437
									<label class="control-label" for="template">*template</label>
438
									<div class="controls">
439
										<input type="text" name="template" value="[%template%]">
440
									</div>
441
								</div>
442
443
						    </div>
444
						</div>
445
446
					[% IF modules.keyword == 'true' %]
447
						<!-- KEYWORDS -->
448
						<div class="accordion-heading">
449
							<a class="accordion-toggle" data-toggle="collapse" data-target="#collapseKeywords" href="#none">
450
								Keywords
451
							</a>
452
							<a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#KeywordInformation"><i class="icon-question-sign"></i></a>
453
						</div>
454
						<div id="collapseKeywords" class="accordion-body collapse in">
455
							<div class="accordion-inner">
456
								<!--  the INPUT -->
457
								<div class="control-group">
458
									<label class="control-label" for="keyword">Keyword</label>
459
									<div class="controls">
460
										<input type="text" name="keyword" id="keyword" value="[%keyword%]">
461
										<span class="help-block">For samples, see <a href=
462
											"http://gcmd.nasa.gov/Resources/valids/gcmd_parameters.html" target="nasa">NASA Global Change Master Directory (GCMD)</a>.
463
										</span>
464
									</div>
465
								</div>
466
								<div class="control-group">
467
									<label class="control-label" for="keywordType">Keyword Type</label>
468
									<div class="controls">
469
										<select name="keywordType" id="keywordType" class="shortwidth">
470
											<option>None</option>
471
								            <option>Theme</option>
472
								            <option>Place</option>
473
								            <option>Stratum</option>
474
								            <option>Temporal</option>
475
								            <option>Taxonomic</option>
476
										</select>
477
									</div>
478
								</div>
479
								<div class="control-group">
480
									<label class="control-label" for="keywordTh">Keyword Thesaurus</label>
481
									<div class="controls">
482 7904 leinfelder
										<select name="keywordTh" id="keywordTh" class="shortwidth">
483
											<option>None</option>
484
											<option>GCMD</option>
485
										</select>
486 7903 leinfelder
									</div>
487
								</div>
488
								<div class="control-group">
489 7904 leinfelder
									<label class="control-label" for="addKeywordButton">More?</label>
490 7903 leinfelder
									<div class="controls">
491
										<input type="button" value="Add Keyword" onClick="addKeyword()">
492
									</div>
493
								</div>
494
495 7905 leinfelder
								<div class="control-group">
496 7906 leinfelder
									<label class="control-label" for="keywordTable"></label>
497 7905 leinfelder
									<div class="controls">
498
										<!-- the orginal table -->
499
										<table>
500
										 [% numKey = 0 %]
501
										 [% IF keyCount %]
502
										   [% numKey = keyCount %]
503
										        [% numAO = aoCount %]
504
										        <tr class="sectbody" id="keywordHRRow">
505
										            <td colSpan="6">
506
										                <hr width = "85%"/>
507
										            </td>
508
										        </tr>
509
										 [% END %]
510
										 <input type="hidden" name="keyCount" value="[%numKey%]"
511
										            id="keyCount">
512
513
										      [% cnt = 1 %]
514
										        [% WHILE cnt < numKey %]
515
516
										           <tr class="sectbody">
517
										            <td class="rightCol">
518
										                <a style="cursor:pointer">
519
										                    <img onClick="cleanTextNodes('keywordHRRow', 'addkeyrow');moveUpRow(event)"
520
										                    src="[% contextUrl %]/style/images/previous.gif"
521
										                    alt="Move Up" border="0"/>
522
										                </a>
523
										                <a style="cursor:pointer">
524
										                    <img onClick="cleanTextNodes('keywordHRRow', 'addkeyrow');moveDownRow(event, 'addkeyrow')"
525
										                    src="[% contextUrl %]/style/images/next.gif"
526
										                    alt="Move Down" border="0"/>
527
										                </a>
528
										                <a style="cursor:pointer">
529
										                    <img src="[% contextUrl %]/style/images/delete.gif"
530
										                    onClick="delRow(event)" alt="Delete" border="0"/>
531
										                </a>
532
										            </td>
533
										            [% SET keyword = "keyword${cnt}" %]
534
										            [% SET keywordType = "kwType${cnt}" %]
535
										            [% SET keywordTh = "kwTh${cnt}" %]
536
										            <td colspan="5" align ="left" style="cursor:pointer"
537
										                onClick="keywordEditRow(event, 0, '[%$keyword%]', '[%$keywordType%]' , '[%$keywordTh%]')">
538
										                [%$keyword%] (Type: [%$keywordType%], Thesaurus: [%$keywordTh%])
539
										                <input name="keyword" type="hidden" value="[%$keyword%]"/>
540
										                <input name="keywordType" type="hidden" value="[%$keywordType%]"/>
541
										                <input name="keywordTh" type="hidden" value="[%$keywordTh%]"/>
542
										            </td>
543
										        </tr>
544
										        [% cnt = cnt + 1 %]
545
										       [% END %]
546
											<tr class="sectbody" id="addkeyrow"><td colspan=6 /></tr>
547
										</table>
548
									</div>
549
								</div>
550
551 7903 leinfelder
						    </div>
552
						</div>
553
					[% END %]
554 7867 leinfelder
555
556
  [% IF modules.temporal == 'true' %]
557
558
  <table class="tables" cellpadding="5" cellspacing="0">
559
    <tr class="sectheader">
560
      <td colspan="5" align="left">
561
        <span class="label">TEMPORAL COVERAGE OF DATA</span>
562
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TemporalCoverageOfData" target="guide" class="smalltext">(What's this?)</a>
563
      </td>
564
      <td class="rightCol"><span><a onClick="temporalBit=swap(event, 'temporalTable', temporalBit)" style="cursor:pointer">Hide</a></span></td>
565
   </tr>
566
   </table>
567
568
   <table class="tables" cellpadding="5" cellspacing="0" id="temporalTable">
569
   <tr class="sectbody">
570
      <td/>
571
      <td align="left"><span class="label">Start Date</span></td>
572
      <td/>
573
      <td align="left"><span class="label">Stop Date</span></td>
574
      <td colspan="2"></td>
575
      </tr>
576
577
      <tr class="sectbody">
578
        <td class="rightCol">
579
          [% IF required.temporal == 'true' %]
580
            <span class="label">*Year (yyyy)</span>
581
          [% ELSE %]
582
    <span class="label">Year (yyyy)</span>
583
    [% END %]</td>
584
    <td align="left" style="width:15%"><input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4"></td>
585
          <td class="rightCol"><span class="label">Year (yyyy)</span></td>
586
    <td align="left"><input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4"></td>
587
          <td colspan="3"></td>
588
      </tr>
589
590
591
  <tr class="sectbody">
592
    <td class="rightCol">
593
    <span class="label">Month</span>
594
          </td>
595
    <td align="left"><select name="beginningMonth">
596
      [% IF form == 're_entry' && beginningMonth != ""%]
597
        <option selected>[%beginningMonth%]</option>
598
      [% END %]
599
            <option>MM</option>            <option>01</option>            <option>02</option>            <option>03</option>
600
            <option>04</option>            <option>05</option>            <option>06</option>            <option>07</option>
601
            <option>08</option>            <option>09</option>            <option>10</option>            <option>11</option>
602
            <option>12</option>
603
          </select></td>
604
605
         <td class="rightCol"><span class="label">Month</span></td>
606
   <td align="left"> <select name="endingMonth">
607
      [% IF form == 're_entry' && endingMonth != ""%]
608
        <option selected>[%endingMonth%]</option>
609
      [% END %]
610
            <option>MM</option>            <option>01</option>            <option>02</option>            <option>03</option>
611
            <option>04</option>            <option>05</option>            <option>06</option>            <option>07</option>
612
            <option>08</option>            <option>09</option>            <option>10</option>            <option>11</option>
613
            <option>12</option>
614
          </select></td>  <td colspan="2"></td></tr>
615
616
   <tr class="sectbody">
617
    <td class="rightCol">
618
            <span class="label">Day</span>
619
    </td>
620
621
    <td align="left"><select name="beginningDay">
622
      [% IF form == 're_entry' && beginningDay != ""%]
623
        <option selected>[%beginningDay%]</option>
624
      [% END %]
625
            <option>DD</option>            <option>01</option>            <option>02</option>            <option>03</option>
626
            <option>04</option>            <option>05</option>            <option>06</option>            <option>07</option>
627
            <option>08</option>            <option>09</option>            <option>10</option>            <option>11</option>
628
            <option>12</option>            <option>13</option>            <option>14</option>            <option>15</option>
629
            <option>16</option>            <option>17</option>            <option>18</option>            <option>19</option>
630
            <option>20</option>            <option>21</option>            <option>22</option>            <option>23</option>
631
            <option>24</option>            <option>25</option>            <option>26</option>            <option>27</option>
632
            <option>28</option>            <option>29</option>            <option>30</option>            <option>31</option>
633
          </select></td>
634
635
          <td class="rightCol"><span class="label">Day</span></td>
636
    <td align="left"><select name="endingDay">
637
      [% IF form == 're_entry' && endingDay != ""%]
638
        <option selected>[%endingDay%]</option>
639
      [% END %]
640
            <option>DD</option>            <option>01</option>            <option>02</option>            <option>03</option>
641
            <option>04</option>            <option>05</option>            <option>06</option>            <option>07</option>
642
            <option>08</option>            <option>09</option>            <option>10</option>            <option>11</option>
643
            <option>12</option>            <option>13</option>            <option>14</option>            <option>15</option>
644
            <option>16</option>            <option>17</option>            <option>18</option>            <option>19</option>
645
            <option>20</option>            <option>21</option>            <option>22</option>            <option>23</option>
646
            <option>24</option>            <option>25</option>            <option>26</option>            <option>27</option>
647
            <option>28</option>            <option>29</option>            <option>30</option>            <option>31</option>
648
          </select></td>
649
          <td colspan="2"></td></tr>
650
  <tr class="sectbody">
651
      <td></td><td align="left" colspan="5">
652
       <span class="label">Note: </span><span class="regtext">Leave "Stop Date" blank if your data set is open-ended.</span>
653
     </td></tr>
654
     </table>
655
  [% END %]
656
657
[% IF modules.spatial == 'true' %]
658
659
  <table class="tables" cellpadding="5" cellspacing="0">
660
661
    <tr class="sectheader">
662
      <td colspan="5" align="left">
663
        <span class="label">SPATIAL COVERAGE OF DATA</span>
664
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#SpatialCoverageOfData" target="guide" class="smalltext">(What's this?)</a>
665
      </td>
666
      <td class="rightCol"><span><a onClick="spatialBit=swap(event, 'spatialTable', spatialBit)" style="cursor:pointer">Hide</a></span></td>
667
    </tr>
668
  </table>
669
670
   <table class="tables" cellpadding="5" cellspacing="0" id="spatialTable">
671
672
    <tr class="sectbody">
673
       [% IF required.spatial == 'true' %]
674
          <td align="right" valign="top"><span class="label">*Geographic Description</span></td>
675
    [% ELSE %]
676
          <td align="right" valign="top"><span class="label">Geographic Description</span></td>
677
    [% END %]
678
          <td align="left" colspan="5"><textarea rows="3" cols="60" name="geogdesc">[% geogdesc %]</textarea></td></tr>
679
    <tr class="sectbody"><td><td colspan="4"><span class="regtext">General description of the geographic area in which the data were collected.
680
    It can be a simple place name (e.g., Santa Barbara) or a fuller description.</span></td><td>
681
    </td></tr>
682
    <tr class="sectbody"><td class="topbottom" align="center" colspan="6"><span class="label">COORDINATES</span></td></tr>
683
684
685
  [% IF show.siteList == 'true' %]
686
    <tr class="sectbody"><td align="left" valign="top" colspan="6">
687
        <input class="label" type="CHECKBOX" name="useSiteCoord" [%useSiteCoord%]>
688
        <span class="regtext">Use [% config.site %] coordinates. (This indicates that the data were
689
        collected at the [% config.site %]. If you check this box, you don't need
690
        to fill in the lat./long. fields below).</span>
691
        </td>
692
    </tr>
693
  [% END %]
694
695
    <tr class="sectbody">
696
      <td width="190"></td><td width="100" align="left"><span class="label">Degrees</span></td>
697
      <td width="110" align="left"><span class="label">Minutes</span></td>
698
      <td width="70" align="left"><span class="label">Seconds</span></td>
699
      <td width="200"></td><td width="90"</td>
700
   </tr>
701
702
   <tr class="sectbody">
703
     <td class="rightCol">
704
      [% IF required.spatial == 'true' %]
705
        <span class="label">*Latitude</span>
706
      [% ELSE %]
707
        <span class="label">Latitude</span>
708
      [% END %]</td>
709
     <td>
710
          <input type="TEXT" name="latDeg1" value="[%latDeg1%]" size="3" maxlength="3"></td>
711
      <td> <input type="TEXT" name="latMin1" value="[%latMin1%]" size="2" maxlength="2"></td>
712
      <td>  <input type="TEXT" name="latSec1" value="[%latSec1%]" size="2" maxlength="2"></td>
713
714
      <td Align="left" colspan="2">
715
      [% IF form == 're_entry' && hemisphLat1 == "N"%]
716
        <input type="radio"  name="hemisphLat1" value="N" CHECKED><span class="regtext">North&nbsp;&nbsp;</span>
717
      [%ELSE%]
718
        <input type="radio"  name="hemisphLat1" value="N"><span class="regtext">North&nbsp;&nbsp;</span>
719
      [%END%]
720
      [% IF form == 're_entry' && hemisphLat1 == "S"%]
721
        <input type="radio"  name="hemisphLat1" value="S" CHECKED><span class="regtext">South&nbsp;&nbsp;</span>
722
      [%ELSE%]
723
        <input type="radio"  name="hemisphLat1" value="S"><span class="regtext">South&nbsp;&nbsp;</span>
724
      [%END%]
725
      </td>
726
    </tr>
727
728
    <tr class="sectbody">
729
      <td class="rightCol">
730
      [% IF required.spatial == 'true' %]
731
        <span class="label">*Longitude</span>
732
      [% ELSE %]
733
        <span class="label">Longitude</span>
734
      [% END %]</td>
735
736
      <td> <input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3"></td>
737
      <td> <input type="TEXT" name="longMin1" value="[%longMin1%]" size="2" maxlength="2"></td>
738
      <td> <input type="TEXT" name="longSec1" value="[%longSec1%]" size="2" maxlength="2"></td>
739
740
741
      <td align="left" colspan="2">
742
    [% IF form == 're_entry' && hemisphLong1 == "W"%]
743
      <input type="radio"  name="hemisphLong1" value="W" CHECKED><span class="regtext">West&nbsp;&nbsp;</span>
744
    [%ELSE%]
745
      <input type="radio"  name="hemisphLong1" value="W"><span class="regtext">West&nbsp;&nbsp;</span>
746
    [%END%]
747
    [% IF form == 're_entry' && hemisphLong1 == "E"%]
748
      <input type="radio"  name="hemisphLong1" value="E" CHECKED><span class="regtext">East&nbsp;&nbsp;</span>
749
    [%ELSE%]
750
      <input type="radio"  name="hemisphLong1" value="E"><span class="regtext">East&nbsp;&nbsp;</span>
751
    [%END%]
752
      </td>
753
    </tr>
754
755
756
    <tr class="sectbody"><td><td colspan="4" align="left"><span class="regtext">If only this first lat/long pair is entered, this indicates a point location. If both lat/long pairs are entered, then this first pair represents the northwest corner of a bounding box.</span>
757
      </td><td></td></tr>
758
759
    <tr class="sectbody">
760
      <td class="rightCol"><span class="label">Latitude</span></td>
761
  <td ><input type="TEXT" name="latDeg2" value="[%latDeg2%]" size="3" maxlength="3"></td>
762
      <td><input type="TEXT" name="latMin2" value="[%latMin2%]" size="2" maxlength="2"></td>
763
      <td><input type="TEXT" name="latSec2" value="[%latSec2%]" size="2" maxlength="2"></td>
764
765
      <td align="left" colspan="2">
766
      [% IF form == 're_entry' && hemisphLat2 == "N"%]
767
        <input type="radio"  name="hemisphLat2" value="N" CHECKED><span class="regtext">North&nbsp;&nbsp;</span>
768
      [%ELSE%]
769
        <input type="radio"  name="hemisphLat2" value="N"><span class="regtext">North&nbsp;&nbsp;</span>
770
      [%END%]
771
      [% IF form == 're_entry' && hemisphLat2 == "S"%]
772
        <input type="radio"  name="hemisphLat2" value="S" CHECKED><span class="regtext">South&nbsp;&nbsp;</span>
773
      [%ELSE%]
774
        <input type="radio"  name="hemisphLat2" value="S"><span class="regtext">South&nbsp;&nbsp;</span>
775
      [%END%]
776
      </td>
777
    </tr>
778
779
    <tr class="sectbody"><td class="rightCol"><span class="label">Longitude</span></td>
780
       <td> <input type="TEXT" name="longDeg2" value="[%longDeg2%]" size="3" maxlength="3"></td>
781
       <td> <input type="TEXT" name="longMin2" value="[%longMin2%]" size="2" maxlength="2"></td>
782
       <td> <input type="TEXT" name="longSec2" value="[%longSec2%]" size="2" maxlength="2"></td>
783
       <td align="left" colspan="2">
784
785
      [% IF form == 're_entry' && hemisphLong2 == "W"%]
786
        <input type="radio"  name="hemisphLong2" value="W" CHECKED><span class="regtext">West&nbsp;&nbsp;</span>
787
      [%ELSE%]
788
        <input type="radio"  name="hemisphLong2" value="W"><span class="regtext">West&nbsp;&nbsp;</span>
789
      [%END%]
790
      [% IF form == 're_entry' && hemisphLong2 == "E"%]
791
        <input type="radio"  name="hemisphLong2" value="E" CHECKED><span class="regtext">East&nbsp;&nbsp;</span>
792
      [%ELSE%]
793
        <input type="radio"  name="hemisphLong2" value="E"><span class="regtext">East&nbsp;&nbsp;</span>
794
      [%END%]
795
      </td>
796
    </tr>
797
    <tr class="sectbody"><td></td>
798
       <td align="left" colspan="4"><span class="regtext">
799
        If entered, this lat/long pair represents the southeast corner of a bounding box.</span>
800
      </td><td></td>
801
    </tr>
802
  </table>
803
   [% END %]
804
805
   [% IF modules.taxonomic == 'true' %]
806
807
  <table class="tables" cellpadding="5" cellspacing="0">
808
809
    <tr class="sectheader">
810
      <td colspan="5" align="left">
811
        <span class="label">TAXONOMIC COVERAGE OF DATA</span>
812
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TaxonomicCoverage" target="guide" class="smalltext">(What's this?)</a>
813
      </td>
814
      <td class="rightCol"><span><a onClick="taxonomicBit=swap(event, 'taxonomicTable', taxonomicBit)" style="cursor:pointer">Hide</a></span></td>
815
    </tr>
816
  </table>
817
818
    <table class="tables" cellpadding="5" cellspacing="0" id="taxonomicTable">
819
        <tr class="sectbody"><td></td>
820
        <td colspan="5" align="left"><span class="regtext">See the <a href=
821
        "http://darwin.zoology.gla.ac.uk/~rpage/MyToL/www/index.php" target="_blank">Glasgow Taxonomic Name Server</a> or the <a href=
822
        "http://www.itis.gov/" target="_blank">Integrated Taxonomic Information System</a> for correct spelling of taxonomic names.</td></tr>
823
824
        <tr class="sectbody">
825
            <td class="rightCol"><span class="label">Taxonomic Rank</span></td>
826
            <td align="left" colspan="5">
827
                <input name="taxonRank" id="taxonRank" class="shortwidth">&nbsp;&nbsp;<span class="label"><span class="regtext">(e.g., Species)</span>
828
            </td>
829
        </tr>
830
831
        <tr class="sectbody">
832
            <td class="rightCol"><span class="label">Taxonomic Name</span></td>
833
            <td align="left" colspan="5">
834
                <input name="taxonName" id="taxonName" class="shortwidth">&nbsp;&nbsp;<span class="label"><span class="regtext">(e.g., <i>Ursus arctos</i>)</span>
835
            </td>
836
        </tr>
837
838
        <tr id="addTaxon" class="sectbody">
839
            <td></td>
840
            <td colspan="5" align="left"> <input type="button" value="Add Taxon"
841
                    onClick="addTaxon()">
842
            </td>
843
        </tr>
844
845
        [% numTaxa = 0 %]
846
        [% IF taxaCount %]
847
            [% numTaxa = taxaCount %]
848
            <tr class="sectbody" id="taxonHRRow">
849
                <td colSpan="6">
850
                    <hr width = "85%"/>
851
                </td>
852
            </tr>
853
        [% END %]
854
        <input type="hidden" name="taxaCount" value="[%numTaxa%]" id="taxaCount">
855
856
        [% cnt = 1 %]
857
        [% WHILE cnt <= numTaxa%]
858
            <tr class="sectbody">
859
                <td class="rightCol">
860
                    <a style="cursor:pointer">
861
                        <img onClick="cleanTextNodes('taxonHRRow', 'addtaxarow');moveUpRow(event)"
862
                        src="[% contextUrl %]/style/images/previous.gif"
863
                        alt="Move Up" border="0"/>
864
                    </a>
865
                    <a style="cursor:pointer">
866
                        <img onClick="cleanTextNodes('taxonHRRow', 'addtaxarow');moveDownRow(event, 'addtaxarow')"
867
                        src="[% contextUrl %]/style/images/next.gif"
868
                        alt="Move Down" border="0"/>
869
                    </a>
870
                    <a style="cursor:pointer">
871
                        <img src="[% contextUrl %]/style/images/delete.gif"
872
                        onClick="delRow(event)" alt="Delete" border="0"/>
873
                    </a>
874
                </td>
875
                [% SET rank = "taxonRankName${cnt}" %]
876
                [% SET name = "taxonRankValue${cnt}" %]
877
                <td colspan="5" align ="left" style="cursor:pointer"
878
                    onClick="taxonEditRow(event, 0, '[%$rank%]', '[%$name%]')">
879
                    Rank: [%$rank%], Name: [%$name%]
880
                    <input name="taxonName" type="hidden" value="[%$name%]"/>
881
                    <input name="taxonRank" type="hidden" value="[%$rank%]"/>
882
            </tr>
883
            [% cnt = cnt + 1 %]
884
        [% END %]
885
886
     <tr class="sectbody" id="addtaxarow">
887
        <td class="bordertop" valign="top" align="right" ><span class="label">Taxonomic Reference</span></td>
888
        <td class="bordertop" align="left" colspan="5"><textarea rows="3" cols="30" name="taxaAuth">[% taxaAuth %]</textarea></td>
889
        </tr>
890
     <tr class="sectbody">
891
     <td></td>
892
     <td colspan="5"><span class="regtext">List the source(s) used for identifying and naming taxa (e.g., name of a <br>field guide, key, or
893
     nomenclature revision).</span></td>
894
     </tr>
895
   </table>
896
    [% END %]
897
898
  [% IF modules.method == 'true' %]
899
  <table class="tables" cellpadding="5" cellspacing="0">
900
    <tr class="sectheader">
901
      <td colspan="5" align="left">
902
        <span class="label">DATA COLLECTION METHODS</span>
903
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Methods" target="guide" class="smalltext">(What's this?)</a>
904
      </td>
905
      <td class="rightCol"><span><a onClick="methodBit=swap(event, 'methodTable', methodBit)" style="cursor:pointer">Hide</a></span></td>
906
    </tr>
907
  </table>
908
909
   <table class="tables" cellpadding="5" cellspacing="0" id="methodTable">
910
911
    <tr class="sectbody">
912
      <td class="rightCol"><span class="label">Method Title</span></td>
913
      <td colspan="5" align="left"><input type="text" name="methodTitle" value="[%methodTitle%]" class="longwidth"></td></tr>
914
915
       <tr class="sectbody"><td valign="top" class="rightCol"><span class="label">Method Description</span>
916
        <td colspan="5" align="left">
917
        [% IF !methodPara %]
918
          <textarea rows="6" cols="60" name="methodPara"></textarea>
919
        [% END %]
920
        [% FOREACH para = methodPara %]
921
           <textarea rows="6" cols="60" name="methodPara">[% para %]</textarea>
922
        [% END %]
923
        </td></tr>
924
925
    <tr class="sectbody" id="addparabutton1">
926
    <td ></td>
927
    <td colspan="5" align="left">
928
          <input type="button" value="Add Paragraph to Method Description"
929
                 onClick="addParagraph()"></td></tr>
930
931
932
    <tr class="sectbody">
933
      <td valign="top" align="right" class="bordertop">
934
       <span class="label">Extent of Study Description</span>
935
       </td>
936
        <td colspan="5" align="left" class="bordertop"><textarea rows="6" cols="60" name="studyExtentDescription">[% studyExtentDescription %]</textarea></td>
937
    </tr>
938
939
   <tr class="sectbody">
940
    <td>
941
    </td>
942
    <td colspan="5"><span class="regtext">
943
        Describe the temporal, spatial and taxonomic extent of the study,<br>
944
        supplementing the information on coverage provided above.  <br>
945
        For example, if the temporal coverage of the data is 1990-2000, you<br>
946
        might provide details about any years that were missed or the months<br>
947
        in which sampling occurred.</span>
948
    </td>
949
    </tr>
950
951
    <tr class="sectbody"><td class="bordertop" valign="top" align="right"><span class="label">Sampling Description</span></td>
952
        <td colspan="5" align="left" class="bordertop" ><textarea rows="6" cols="60" name="samplingDescription">[% samplingDescription %]</textarea></td></tr>
953
954
   <tr class="sectbody"><td><td colspan="5"><span class="regtext">
955
        Describe the sampling design of the study.  For example, you might <br>
956
        describe the way in which treatments were assigned to sampling units.</span></td></tr>
957
958
    </table>
959
   [% END %]
960
961
  <table class="tables" cellpadding="5" cellspacing="0">
962
    <tr class="sectheader">
963
      <td colspan="5" align="left">
964
        <span class="label">DATA SET CONTACT</span>
965
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetContactAddress" target="guide" class="smalltext">(What's this?)</a>
966
      </td>
967
      <td class="rightCol"><span><a onClick="dscBit=swap(event, 'dscTable', dscBit)" style="cursor:pointer">Hide</a></span></td>
968
    </tr>
969
  </table>
970
971
   <table class="tables" cellpadding="5" cellspacing="0" id="dscTable">
972
  <tr class="sectbody"><td valign="top" align="left" colspan="6">
973
        <input type="CHECKBOX" name="useOrigAddress" onClick="copyContact()" id="copyCheckBox" [%useOrigAddress%]>
974
        <span class="regtext">Use the same name and address as the <span class="label">PRINCIPAL DATA SET OWNER</span> above.</span></td></tr>
975
   <tr class="sectbody">
976
      <td class="rightCol"><span class="label">*First Name</span></td>
977
      <td colspan="5"><input type="TEXT" name="origNamefirstContact" id="contactNameFirst" value="[%origNamefirstContact%]" class="shortwidth"></td></tr>
978
    <tr class="sectbody">
979
      <td class="rightCol"><span class="label">*Last Name</span>
980
      <td colspan="5"><input type="TEXT" name="origNamelastContact" id="contactNameLast" value="[%origNamelastContact%]" class="shortwidth"></td></tr>
981
    <tr class="sectbody">
982
      <td class="rightCol"><span class="label">Organization Name</span>
983
      <td colspan="5"><input type="TEXT" name="origNameOrgContact" id="contactNameOrg" value="[%origNameOrgContact%]" class="longwidth"></td></tr>
984
    <tr class="sectbody">
985
      [% IF required.contactEmailAddress == 'true' %]
986
        <td class="rightCol"><span class="label">*E-Mail</span>
987
      [% ELSE %]
988
        <td class="rightCol"><span class="label">E-Mail</span>
989
      [% END %]
990
      <td colspan="5"><input type="TEXT" name="origEmailContact" id="contactEmail" value="[%origEmailContact%]" class="shortwidth"></td></tr>
991
    <tr class="sectbody">
992
      <td class="rightCol"><span class="label">Phone</span>
993
      <td colspan="5"><input type="TEXT" name="origPhoneContact" id="contactPhone" value="[%origPhoneContact%]" class="shortwidth"></td></tr>
994
    <tr class="sectbody">
995
      <td class="rightCol"><span class="label">FAX</span>
996
      <td colspan="5"><input type="TEXT" name="origFAXContact" id="contactFAX" value="[%origFAXContact%]" class="shortwidth"></td></tr>
997
    <tr class="sectbody"><td valign="top" align="right"><span class="label">Street<br>Information</td>
998
      <td colspan="5"><textarea rows="3" cols="30" name="origDeliveryContact" id="contactDelivery">[%origDeliveryContact%]</textarea><br><span class="smalltext">(number, street, unit, etc.; comma-separated)</span></td></tr>
999
    <tr class="sectbody">
1000
      <td class="rightCol"><span class="label">City</span>
1001
      <td colspan="5"><input type="TEXT" name="origCityContact" id="contactCity" value="[%origCityContact%]" class="shortwidth"></td></tr>
1002
    <tr class="sectbody">
1003
      <td class="rightCol"><span class="label">U.S. State or Territory</span>
1004
      <td colspan="5"><select id="contactState" name="origStateContact" class="shortwidth">
1005
      [% IF form == 're_entry' %]
1006
              <option>[%origStateContact%]</option>
1007
      [% ELSE %]
1008
                <option>Select state or territory here.</option>
1009
            [% END %]
1010
          <option>Alabama</option>
1011
            <option>Alaska</option>
1012
            <option>American Samoa</option>
1013
            <option>Arizona</option>
1014
            <option>Arkansas</option>
1015
            <option>California</option>
1016
            <option>Colorado</option>
1017
            <option>Connecticut</option>
1018
            <option>Delaware</option>
1019
            <option>District of Columbia</option>
1020
            <option>Florida</option>
1021
            <option>Georgia</option>
1022
            <option>Guam</option>
1023
            <option>Hawaii</option>
1024
            <option>Idaho</option>
1025
            <option>Illinois</option>
1026
            <option>Indiana</option>
1027
            <option>Iowa</option>
1028
            <option>Kansas</option>
1029
            <option>Kentucky</option>
1030
            <option>Louisiana</option>
1031
            <option>Maine</option>
1032
            <option>Maryland</option>
1033
            <option>Massachusetts</option>
1034
            <option>Michigan</option>
1035
            <option>Minnesota</option>
1036
            <option>Mississippi</option>
1037
            <option>Missouri</option>
1038
            <option>Montana</option>
1039
            <option>Nebraska</option>
1040
            <option>Nevada</option>
1041
            <option>New Hampshire</option>
1042
            <option>New Jersey</option>
1043
            <option>New Mexico</option>
1044
            <option>New York</option>
1045
            <option>North Carolina</option>
1046
            <option>North Dakota</option>
1047
            <option>Northern Mariana Islands</option>
1048
            <option>Ohio</option>
1049
            <option>Oklahoma</option>
1050
            <option>Oregon</option>
1051
            <option>Pennsylvania</option>
1052
            <option>Puerto Rico</option>
1053
            <option>Rhode Island</option>
1054
            <option>South Carolina</option>
1055
            <option>South Dakota</option>
1056
            <option>Tennessee</option>
1057
            <option>Texas</option>
1058
            <option>Utah</option>
1059
            <option>Vermont</option>
1060
            <option>Virgin Islands</option>
1061
            <option>Virginia</option>
1062
            <option>Washington</option>
1063
            <option>West Virginia</option>
1064
            <option>Wisconsin</option>
1065
            <option>Wyoming</option>
1066
          </select></td></tr>
1067
     <tr class="sectbody">
1068
        <td class="rightCol"><span class="label">Other State/Province</span>
1069
  <td colspan="5"><input type="TEXT" name="origStateOtherContact" id="contactStateOther" value="[%origStateOtherContact%]" class="shortwidth"></td></tr>
1070
     <tr class="sectbody">
1071
        <td class="rightCol"><span class="label">Postal Code</span>
1072
  <td colspan="5"><input type="TEXT" name="origZIPContact" class="shortwidth" id="contactZip" value="[%origZIPContact%]"></td></tr>
1073
     <tr class="sectbody">
1074
        <td class="rightCol"><span class="label">Country</span>
1075
        <td colspan="5"><input type="TEXT" name="origCountryContact" id="contactCountry" value="[%origCountryContact%]" class="shortwidth"></td></tr>
1076
     </table>
1077
1078
  <table class="tables" cellpadding="5" cellspacing="0">
1079
    <tr class="sectheader">
1080
      <td colspan="5" align="left">
1081
        <span class="label">DISTRIBUTION INFORMATION</span>
1082
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DistributionIinformation" target="guide" class="smalltext">(What's this?)</a>
1083
      </td>
1084
      <td class="rightCol"><span><a onClick="distBit=swap(event, 'distTable', distBit)" style="cursor:pointer">Hide</a></span></td>
1085
    </tr>
1086
  </table>
1087
1088
   <table class="tables" cellpadding="5" cellspacing="0" id="distTable">
1089
  <tr class="sectbody"><td class="rightCol"><span class="label">Data Set Identifier</span></td>
1090
  <td colspan="5"><input type="TEXT" name="identifier" value="[%identifier%]" class="longwidth"></td></tr>
1091
  <tr class="sectbody"><td valign="top" align="right"><span class="label">Note:</span></td>
1092
     <td colspan="4" align="left"><span class="regtext">
1093
     If available, please enter a name or number that uniquely identifies and<br>
1094
     describes concisely the data set. Alternatively, provide other pertinent<br>
1095
     information that can identify and locate the data set within your site's<br>
1096
     data management system.</span></td><td></td></tr>
1097
1098
    <tr class="sectbody">
1099
        <td class="rightCol"><span class="label">*Data Medium</span></td>
1100
1101
        <td colspan="5" align="left">
1102
        [% IF form == 're_entry' && (dataMedium == "digital " || dataMedium == "digital")  %]
1103
            <input type="radio"  name="dataMedium" onClick="handleOther(0, 'otherDM')" value="digital" CHECKED>
1104
            <span class="regtext">Digital&nbsp;&nbsp;</span></input>
1105
        [%ELSE%]
1106
            <input type="radio"  name="dataMedium" onClick="handleOther(0, 'otherDM')" value="digital">
1107
            <span class="regtext">Digital&nbsp;&nbsp;</span></input>
1108
        [% END %]
1109
        [% IF form == 're_entry' && (dataMedium == "hardcopy " || dataMedium == "hardcopy") %]
1110
           <input type="radio"  name="dataMedium" onClick="handleOther(0, 'otherDM')" value="hardcopy" CHECKED>
1111
           <span class="regtext">Hardcopy&nbsp;&nbsp;</span></input>
1112
        [%ELSE%]
1113
           <input type="radio"  name="dataMedium" onClick="handleOther(0, 'otherDM')" value="hardcopy">
1114
           <span class="regtext">Hardcopy&nbsp;&nbsp;</span></input>
1115
        [% END %]
1116
        [% IF form == 're_entry' && dataMedium == "other" %]
1117
           <input type="radio" name="dataMedium" value="other" onClick="handleOther(1, 'otherDM')" CHECKED>
1118
           <span class="regtext">Other&nbsp;</span></input>
1119
        [%ELSE%]
1120
           <input type="radio"  name="dataMedium" onClick="handleOther(1, 'otherDM')" value="other">
1121
           <span class="regtext">Other&nbsp;</span></input>
1122
        [% END %]
1123
1124
  <input type="TEXT" name="dataMediumOther" value="[%dataMediumOther%]" id="otherDM" class="shortwidth"></input>
1125
        </td>
1126
    </tr>
1127
1128
  <tr class="sectbody"><td class="rightCol"><span class="label">*Usage Rights</span></td>
1129
      <td colspan="5" align="left">
1130
1131
          [% IF form == 're_entry' && useConstraints == "no restrictions" %]
1132
      <input type="radio"  name="useConstraints" onClick="handleOther(0, 'otherUC')" value="no restrictions" CHECKED>
1133
      <span class="regtext">No restrictions&nbsp;&nbsp;</span>
1134
          [%ELSE%]
1135
            <input type="radio"  name="useConstraints" onClick="handleOther(0, 'otherUC')" value="no restrictions">
1136
            <span class="regtext">No restrictions&nbsp;&nbsp;</span>
1137
          [%END%]
1138
          [% IF form == 're_entry' && useConstraints == "Obtain permission from data set owner(s)" %]
1139
        <input type="radio"  name="useConstraints" onClick="handleOther(0, 'otherUC')" value="Obtain permission from data set owner(s)" CHECKED>
1140
        <span class="regtext">Obtain permission from data set owner(s)&nbsp;&nbsp;</span>
1141
          [%ELSE%]
1142
            <input type="radio"  name="useConstraints" onClick="handleOther(0, 'otherUC')" value="Obtain permission from data set owner(s)">
1143
            <span class="regtext">Obtain permission from data set owner(s)&nbsp;&nbsp;</span>
1144
          [%END%]
1145
          </td></tr>
1146
1147
1148
1149
   <tr class="sectbody"><td></td><td colspan="5" align="left">
1150
1151
    [% IF form == 're_entry' && useConstraints == "other" %]
1152
      <input type="radio"  name="useConstraints" onClick="handleOther(1, 'otherUC')" value="other" CHECKED>
1153
      <span class="regtext">Other&nbsp;</span>
1154
    [%ELSE%]
1155
      <input type="radio"  name="useConstraints" onClick="handleOther(1, 'otherUC')" value="other">
1156
      <span class="regtext">Other&nbsp;</span>
1157
    [%END%]
1158
   <input type="TEXT" name="useConstraintsOther" id="otherUC" value="[%useConstraintsOther%]" size="49"></td</tr>
1159
1160
1161
   <tr class="sectbody"><td class="rightCol"><span class="label">URL</span></td>
1162
   <td colspan="5" align="left"><input type="TEXT" name="url" value="[%url%]" class="longwidth"></td></tr>
1163
1164
   <tr class="sectbody"><td valign="top" align="right"><span class="label">Additional Information</span>
1165
   <td colspan="5" align="left"><textarea rows="6" cols="60" name="addComments">[%addComments%]</textarea></td></tr>
1166
1167
   </table>
1168
1169
  [% IF modules.upload == 'true' %]
1170
1171
  <!-- Associated Data -->
1172
  <table class="tables" cellpadding="5" cellspacing="0">
1173
  <tr class="sectheader">
1174
    <td colspan="5" align="left">
1175
      <span class="label">UPLOAD DATA</span>
1176
      <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#XXX" target="guide" class="smalltext">(What's this?)</a>
1177
    </td>
1178
    <td class="rightCol"><span><a onClick="uploadBit=swap(event, 'uploadTable', uploadBit)" style="cursor:pointer">Hide</a></span></td>
1179
  </tr>
1180
   </table>
1181
  <table class="tables" cellpadding="5" cellspacing="0" id="uploadTable">
1182
  <tr class="sectbody">
1183
    <td class="rightCol"><span class="label">Upload Data File:</span></td>
1184
    <td colspan="5">
1185
        <input type="file" id="file_element" name="file_1" class="longwidth">
1186
1187
        [% IF form == 're_entry' && upCount %]
1188
           [% cnt = 0 %]
1189
           [% WHILE cnt < upCount %]
1190
                [% SET fileSum = "upload_${cnt}" %]
1191
                [% SET fileName = "uploadname_${cnt}" %]
1192
                [% SET fileType = "uploadtype_${cnt}" %]
1193
                [% SET filePerm = "uploadperm_${cnt}" %]
1194
                [% IF fileSum %]
1195
                    <input type="hidden" name="[%fileSum%]" value="[% $fileSum %]">
1196
                    <input type="hidden" name="[%fileName%]" value="[% $fileName %]">
1197
                    <input type="hidden" name="[%fileType%]" value="[% $fileType %]">
1198
                [% END %]
1199
                [% cnt = cnt + 1 %]
1200
            [% END %]
1201
        <input type="hidden" id="upCount" name="upCount" value="[%upCount%]">
1202
        [% END %]
1203
1204
        <input type="hidden" id="fileCount" name="fileCount" value="[%fileCount%]"></td>
1205
  </tr>
1206
  <tr class="sectbody">
1207
    <td class="rightCol" valign="top"><span class="label">Attached Files:</span></td>
1208
    <td colspan="5" class="regtext">
1209
    [% IF !upCount %]
1210
        <div id="file_comment">
1211
            (<i>None currently attached</i>)
1212
        </div>
1213
    [% END %]
1214
    <div id="files_list">[% IF form == 're_entry' && upCount %]
1215
    [% cnt = 0 %]
1216
1217
    [% WHILE cnt < upCount %]
1218
        [% SET fileName = "uploadname_${cnt}" %]
1219
        [% SET filePerm = "uploadperm_${cnt}" %]
1220
        [% IF $filePerm == 'public' %]
1221
          [% SET perm_a = "checked" %]
1222
          [% SET perm_b = "" %]
1223
        [% ELSE %]
1224
          [% SET perm_a = "" %]
1225
          [% SET perm_b = "checked" %]
1226
        [% END %]
1227
        [% IF fileName %]<div>
1228
          [% $fileName %]
1229
          <input type="radio" name="[% filePerm %]" value="public" [% perm_a %]> Public
1230
          <input type="radio" name="[% filePerm %]" value="private" [% perm_b %]> Private
1231
1232
          <input type="button" value="Delete" onclick="deleteFile(event, [%fileName%]);"/></div>[% END %]
1233
1234
        [% cnt = cnt + 1 %]
1235
    [% END %]
1236
    [% END %]</div></td>
1237
  </tr>
1238
  </table>
1239
1240
  <script language="JavaScript" type="text/JavaScript">
1241
    var multi_selector = new MultiSelector( document.getElementById( 'files_list' ), 10);
1242
    multi_selector.addElement( document.getElementById( 'file_element' ) );
1243
  </script>
1244
  [% END %]
1245
   <table class="tables" cellpadding="5" cellspacing="0">
1246
   <tr class="sectheader"><td colspan="6" align="left"></td></tr>
1247
   <tr class="sectheader"><td colspan="6" align="center" class="borderbottom"><input type="SUBMIT" onClick="sortInputTags()" value="Submit Data Set Description" name="SUBMIT">
1248
1249
    </table>
1250
    <p></p>
1251 7896 leinfelder
1252
    					</div>
1253
					</div> <!-- end the accordinan -->
1254 7867 leinfelder
1255
</form>
1256 7896 leinfelder
			</div> <!-- end the row -->
1257
1258 7889 leinfelder
		</div>
1259
	</article>
1260
1261 7867 leinfelder
[% INCLUDE $templates.footer %]