Project

General

Profile

1
[% INCLUDE $templates.header %]
2

    
3
  <script language="JavaScript">
4
	    var contextUrl = '[% contextUrl %]';
5
	</script>
6
  <script language="JavaScript" type="text/javascript" src="[% styleCommonPath %]/templates/metacatui/entryForm.js">
7
  </script>
8

    
9
	<!-- 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

    
54
			<!--  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
  <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
  				<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
						
160
						<!-- PRINCIPAL DATA SET OWNER -->
161
						<div class="accordion-heading">
162
							<a class="accordion-toggle" data-toggle="collapse" data-target="#collapseOwner" href="#none">
163
								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
						<div id="collapseOwner" class="accordion-body collapse in">
168
							<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
						
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
							
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
								<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
								    								
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
								
423
						    </div>
424
						</div>
425
						
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
										<input type="text" name="keywordTh" id="keywordTh" value="[%keywordTh%]">
483
									</div>
484
								</div>
485
								<div class="control-group">
486
									<label class="control-label" for="addKeyword">More?</label>
487
									<div class="controls">
488
										<input type="button" value="Add Keyword" onClick="addKeyword()">
489
									</div>
490
								</div>
491
								
492
								<!-- the orginal table -->
493
								<table>
494
								 [% numKey = 0 %]
495
								 [% IF keyCount %]
496
								   [% numKey = keyCount %]
497
								        [% numAO = aoCount %]
498
								        <tr class="sectbody" id="keywordHRRow">
499
								            <td colSpan="6">
500
								                <hr width = "85%"/>
501
								            </td>
502
								        </tr>
503
								 [% END %]
504
								 <input type="hidden" name="keyCount" value="[%numKey%]" 
505
								            id="keyCount">
506
								   
507
								      [% cnt = 1 %]
508
								        [% WHILE cnt < numKey %]
509
								        
510
								           <tr class="sectbody">
511
								            <td class="rightCol">
512
								                <a style="cursor:pointer">
513
								                    <img onClick="cleanTextNodes('keywordHRRow', 'addkeyrow');moveUpRow(event)"
514
								                    src="[% contextUrl %]/style/images/previous.gif"
515
								                    alt="Move Up" border="0"/>
516
								                </a>
517
								                <a style="cursor:pointer">
518
								                    <img onClick="cleanTextNodes('keywordHRRow', 'addkeyrow');moveDownRow(event, 'addkeyrow')"
519
								                    src="[% contextUrl %]/style/images/next.gif"
520
								                    alt="Move Down" border="0"/>
521
								                </a>
522
								                <a style="cursor:pointer">
523
								                    <img src="[% contextUrl %]/style/images/delete.gif"
524
								                    onClick="delRow(event)" alt="Delete" border="0"/>
525
								                </a>
526
								            </td>
527
								            [% SET keyword = "keyword${cnt}" %]
528
								            [% SET keywordType = "kwType${cnt}" %]
529
								            [% SET keywordTh = "kwTh${cnt}" %]
530
								            <td colspan="5" align ="left" style="cursor:pointer"
531
								                onClick="keywordEditRow(event, 0, '[%$keyword%]', '[%$keywordType%]' , '[%$keywordTh%]')">
532
								                [%$keyword%] (Type: [%$keywordType%], Thesaurus: [%$keywordTh%])
533
								                <input name="keyword" type="hidden" value="[%$keyword%]"/>
534
								                <input name="keywordType" type="hidden" value="[%$keywordType%]"/>
535
								                <input name="keywordTh" type="hidden" value="[%$keywordTh%]"/>
536
								            </td>
537
								        </tr>
538
								        [% cnt = cnt + 1 %]
539
								       [% END %]
540
								        <tr class="sectbody" id="addkeyrow"><td colspan=6 /></tr>
541
								       </table>
542
								
543
						    </div>
544
						</div>
545
					[% END %]	
546

    
547
  
548
  [% IF modules.temporal == 'true' %]
549
   
550
  <table class="tables" cellpadding="5" cellspacing="0">   
551
    <tr class="sectheader">
552
      <td colspan="5" align="left">
553
        <span class="label">TEMPORAL COVERAGE OF DATA</span>
554
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TemporalCoverageOfData" target="guide" class="smalltext">(What's this?)</a>
555
      </td>
556
      <td class="rightCol"><span><a onClick="temporalBit=swap(event, 'temporalTable', temporalBit)" style="cursor:pointer">Hide</a></span></td>
557
   </tr>
558
   </table>
559
   
560
   <table class="tables" cellpadding="5" cellspacing="0" id="temporalTable">  
561
   <tr class="sectbody">
562
      <td/>
563
      <td align="left"><span class="label">Start Date</span></td>
564
      <td/>
565
      <td align="left"><span class="label">Stop Date</span></td>
566
      <td colspan="2"></td>
567
      </tr>
568
     
569
      <tr class="sectbody"> 
570
        <td class="rightCol"> 
571
          [% IF required.temporal == 'true' %]
572
            <span class="label">*Year (yyyy)</span>
573
          [% ELSE %]
574
    <span class="label">Year (yyyy)</span>
575
    [% END %]</td>
576
    <td align="left" style="width:15%"><input type="TEXT" name="beginningYear" value="[%beginningYear%]" size="8" maxlength="4"></td>
577
          <td class="rightCol"><span class="label">Year (yyyy)</span></td>
578
    <td align="left"><input type="TEXT" name="endingYear" value="[%endingYear%]" size="8" maxlength="4"></td>
579
          <td colspan="3"></td>
580
      </tr>
581
          
582
    
583
  <tr class="sectbody">
584
    <td class="rightCol">
585
    <span class="label">Month</span>
586
          </td>
587
    <td align="left"><select name="beginningMonth">
588
      [% IF form == 're_entry' && beginningMonth != ""%]
589
        <option selected>[%beginningMonth%]</option>
590
      [% END %]
591
            <option>MM</option>            <option>01</option>            <option>02</option>            <option>03</option>
592
            <option>04</option>            <option>05</option>            <option>06</option>            <option>07</option>
593
            <option>08</option>            <option>09</option>            <option>10</option>            <option>11</option>
594
            <option>12</option>
595
          </select></td>
596
      
597
         <td class="rightCol"><span class="label">Month</span></td>
598
   <td align="left"> <select name="endingMonth">
599
      [% IF form == 're_entry' && endingMonth != ""%]
600
        <option selected>[%endingMonth%]</option>
601
      [% END %]
602
            <option>MM</option>            <option>01</option>            <option>02</option>            <option>03</option>
603
            <option>04</option>            <option>05</option>            <option>06</option>            <option>07</option>
604
            <option>08</option>            <option>09</option>            <option>10</option>            <option>11</option>
605
            <option>12</option>
606
          </select></td>  <td colspan="2"></td></tr>
607
       
608
   <tr class="sectbody">
609
    <td class="rightCol"> 
610
            <span class="label">Day</span>
611
    </td>
612
    
613
    <td align="left"><select name="beginningDay">
614
      [% IF form == 're_entry' && beginningDay != ""%]
615
        <option selected>[%beginningDay%]</option>
616
      [% END %]
617
            <option>DD</option>            <option>01</option>            <option>02</option>            <option>03</option>
618
            <option>04</option>            <option>05</option>            <option>06</option>            <option>07</option>
619
            <option>08</option>            <option>09</option>            <option>10</option>            <option>11</option>
620
            <option>12</option>            <option>13</option>            <option>14</option>            <option>15</option>
621
            <option>16</option>            <option>17</option>            <option>18</option>            <option>19</option>
622
            <option>20</option>            <option>21</option>            <option>22</option>            <option>23</option>
623
            <option>24</option>            <option>25</option>            <option>26</option>            <option>27</option>
624
            <option>28</option>            <option>29</option>            <option>30</option>            <option>31</option>
625
          </select></td>
626
      
627
          <td class="rightCol"><span class="label">Day</span></td>
628
    <td align="left"><select name="endingDay">
629
      [% IF form == 're_entry' && endingDay != ""%]
630
        <option selected>[%endingDay%]</option>
631
      [% END %]
632
            <option>DD</option>            <option>01</option>            <option>02</option>            <option>03</option>
633
            <option>04</option>            <option>05</option>            <option>06</option>            <option>07</option>
634
            <option>08</option>            <option>09</option>            <option>10</option>            <option>11</option>
635
            <option>12</option>            <option>13</option>            <option>14</option>            <option>15</option>
636
            <option>16</option>            <option>17</option>            <option>18</option>            <option>19</option>
637
            <option>20</option>            <option>21</option>            <option>22</option>            <option>23</option>
638
            <option>24</option>            <option>25</option>            <option>26</option>            <option>27</option>
639
            <option>28</option>            <option>29</option>            <option>30</option>            <option>31</option>
640
          </select></td>
641
          <td colspan="2"></td></tr>
642
  <tr class="sectbody"> 
643
      <td></td><td align="left" colspan="5"> 
644
       <span class="label">Note: </span><span class="regtext">Leave "Stop Date" blank if your data set is open-ended.</span>
645
     </td></tr>
646
     </table>
647
  [% END %]  
648
  
649
[% IF modules.spatial == 'true' %]
650

    
651
  <table class="tables" cellpadding="5" cellspacing="0">  
652

    
653
    <tr class="sectheader">
654
      <td colspan="5" align="left">
655
        <span class="label">SPATIAL COVERAGE OF DATA</span>
656
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#SpatialCoverageOfData" target="guide" class="smalltext">(What's this?)</a>
657
      </td>
658
      <td class="rightCol"><span><a onClick="spatialBit=swap(event, 'spatialTable', spatialBit)" style="cursor:pointer">Hide</a></span></td>
659
    </tr>
660
  </table>
661
   
662
   <table class="tables" cellpadding="5" cellspacing="0" id="spatialTable">  
663
   
664
    <tr class="sectbody">
665
       [% IF required.spatial == 'true' %]
666
          <td align="right" valign="top"><span class="label">*Geographic Description</span></td>
667
    [% ELSE %]
668
          <td align="right" valign="top"><span class="label">Geographic Description</span></td>
669
    [% END %]    
670
          <td align="left" colspan="5"><textarea rows="3" cols="60" name="geogdesc">[% geogdesc %]</textarea></td></tr>
671
    <tr class="sectbody"><td><td colspan="4"><span class="regtext">General description of the geographic area in which the data were collected. 
672
    It can be a simple place name (e.g., Santa Barbara) or a fuller description.</span></td><td>
673
    </td></tr>
674
    <tr class="sectbody"><td class="topbottom" align="center" colspan="6"><span class="label">COORDINATES</span></td></tr>
675
        
676
     
677
  [% IF show.siteList == 'true' %]
678
    <tr class="sectbody"><td align="left" valign="top" colspan="6">
679
        <input class="label" type="CHECKBOX" name="useSiteCoord" [%useSiteCoord%]>
680
        <span class="regtext">Use [% config.site %] coordinates. (This indicates that the data were
681
        collected at the [% config.site %]. If you check this box, you don't need
682
        to fill in the lat./long. fields below).</span>
683
        </td>
684
    </tr>
685
  [% END %]
686
    
687
    <tr class="sectbody">
688
      <td width="190"></td><td width="100" align="left"><span class="label">Degrees</span></td>
689
      <td width="110" align="left"><span class="label">Minutes</span></td>
690
      <td width="70" align="left"><span class="label">Seconds</span></td>
691
      <td width="200"></td><td width="90"</td>
692
   </tr>
693
      
694
   <tr class="sectbody">
695
     <td class="rightCol">
696
      [% IF required.spatial == 'true' %]
697
        <span class="label">*Latitude</span>
698
      [% ELSE %]
699
        <span class="label">Latitude</span>
700
      [% END %]</td> 
701
     <td> 
702
          <input type="TEXT" name="latDeg1" value="[%latDeg1%]" size="3" maxlength="3"></td>
703
      <td> <input type="TEXT" name="latMin1" value="[%latMin1%]" size="2" maxlength="2"></td>
704
      <td>  <input type="TEXT" name="latSec1" value="[%latSec1%]" size="2" maxlength="2"></td>
705
      
706
      <td Align="left" colspan="2"> 
707
      [% IF form == 're_entry' && hemisphLat1 == "N"%]
708
        <input type="radio"  name="hemisphLat1" value="N" CHECKED><span class="regtext">North&nbsp;&nbsp;</span>
709
      [%ELSE%]
710
        <input type="radio"  name="hemisphLat1" value="N"><span class="regtext">North&nbsp;&nbsp;</span>
711
      [%END%]
712
      [% IF form == 're_entry' && hemisphLat1 == "S"%]
713
        <input type="radio"  name="hemisphLat1" value="S" CHECKED><span class="regtext">South&nbsp;&nbsp;</span>
714
      [%ELSE%]
715
        <input type="radio"  name="hemisphLat1" value="S"><span class="regtext">South&nbsp;&nbsp;</span>
716
      [%END%]
717
      </td>
718
    </tr>
719

    
720
    <tr class="sectbody">
721
      <td class="rightCol"> 
722
      [% IF required.spatial == 'true' %]
723
        <span class="label">*Longitude</span>
724
      [% ELSE %]
725
        <span class="label">Longitude</span>
726
      [% END %]</td>
727
     
728
      <td> <input type="TEXT" name="longDeg1" value="[%longDeg1%]" size="3" maxlength="3"></td>
729
      <td> <input type="TEXT" name="longMin1" value="[%longMin1%]" size="2" maxlength="2"></td>
730
      <td> <input type="TEXT" name="longSec1" value="[%longSec1%]" size="2" maxlength="2"></td>
731
      
732
      
733
      <td align="left" colspan="2"> 
734
    [% IF form == 're_entry' && hemisphLong1 == "W"%]        
735
      <input type="radio"  name="hemisphLong1" value="W" CHECKED><span class="regtext">West&nbsp;&nbsp;</span>
736
    [%ELSE%]
737
      <input type="radio"  name="hemisphLong1" value="W"><span class="regtext">West&nbsp;&nbsp;</span>
738
    [%END%]
739
    [% IF form == 're_entry' && hemisphLong1 == "E"%]
740
      <input type="radio"  name="hemisphLong1" value="E" CHECKED><span class="regtext">East&nbsp;&nbsp;</span>
741
    [%ELSE%]
742
      <input type="radio"  name="hemisphLong1" value="E"><span class="regtext">East&nbsp;&nbsp;</span>
743
    [%END%]
744
      </td>
745
    </tr>
746
      
747
      
748
    <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>
749
      </td><td></td></tr>
750
      
751
    <tr class="sectbody"> 
752
      <td class="rightCol"><span class="label">Latitude</span></td>
753
  <td ><input type="TEXT" name="latDeg2" value="[%latDeg2%]" size="3" maxlength="3"></td>
754
      <td><input type="TEXT" name="latMin2" value="[%latMin2%]" size="2" maxlength="2"></td>
755
      <td><input type="TEXT" name="latSec2" value="[%latSec2%]" size="2" maxlength="2"></td>
756
        
757
      <td align="left" colspan="2"> 
758
      [% IF form == 're_entry' && hemisphLat2 == "N"%]
759
        <input type="radio"  name="hemisphLat2" value="N" CHECKED><span class="regtext">North&nbsp;&nbsp;</span>
760
      [%ELSE%]
761
        <input type="radio"  name="hemisphLat2" value="N"><span class="regtext">North&nbsp;&nbsp;</span>
762
      [%END%]
763
      [% IF form == 're_entry' && hemisphLat2 == "S"%]
764
        <input type="radio"  name="hemisphLat2" value="S" CHECKED><span class="regtext">South&nbsp;&nbsp;</span>
765
      [%ELSE%]
766
        <input type="radio"  name="hemisphLat2" value="S"><span class="regtext">South&nbsp;&nbsp;</span>
767
      [%END%]
768
      </td>
769
    </tr>
770
    
771
    <tr class="sectbody"><td class="rightCol"><span class="label">Longitude</span></td>
772
       <td> <input type="TEXT" name="longDeg2" value="[%longDeg2%]" size="3" maxlength="3"></td>
773
       <td> <input type="TEXT" name="longMin2" value="[%longMin2%]" size="2" maxlength="2"></td>
774
       <td> <input type="TEXT" name="longSec2" value="[%longSec2%]" size="2" maxlength="2"></td>
775
       <td align="left" colspan="2">
776
       
777
      [% IF form == 're_entry' && hemisphLong2 == "W"%]
778
        <input type="radio"  name="hemisphLong2" value="W" CHECKED><span class="regtext">West&nbsp;&nbsp;</span>
779
      [%ELSE%]
780
        <input type="radio"  name="hemisphLong2" value="W"><span class="regtext">West&nbsp;&nbsp;</span>
781
      [%END%]
782
      [% IF form == 're_entry' && hemisphLong2 == "E"%]
783
        <input type="radio"  name="hemisphLong2" value="E" CHECKED><span class="regtext">East&nbsp;&nbsp;</span>
784
      [%ELSE%]
785
        <input type="radio"  name="hemisphLong2" value="E"><span class="regtext">East&nbsp;&nbsp;</span>
786
      [%END%]
787
      </td>
788
    </tr>
789
    <tr class="sectbody"><td></td>
790
       <td align="left" colspan="4"><span class="regtext">
791
        If entered, this lat/long pair represents the southeast corner of a bounding box.</span>
792
      </td><td></td>
793
    </tr>
794
  </table>    
795
   [% END %]
796

    
797
   [% IF modules.taxonomic == 'true' %]
798
   
799
  <table class="tables" cellpadding="5" cellspacing="0">  
800

    
801
    <tr class="sectheader">
802
      <td colspan="5" align="left">
803
        <span class="label">TAXONOMIC COVERAGE OF DATA</span>
804
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#TaxonomicCoverage" target="guide" class="smalltext">(What's this?)</a>
805
      </td>
806
      <td class="rightCol"><span><a onClick="taxonomicBit=swap(event, 'taxonomicTable', taxonomicBit)" style="cursor:pointer">Hide</a></span></td>
807
    </tr>
808
  </table>
809
   
810
    <table class="tables" cellpadding="5" cellspacing="0" id="taxonomicTable">  
811
        <tr class="sectbody"><td></td>
812
        <td colspan="5" align="left"><span class="regtext">See the <a href=
813
        "http://darwin.zoology.gla.ac.uk/~rpage/MyToL/www/index.php" target="_blank">Glasgow Taxonomic Name Server</a> or the <a href=
814
        "http://www.itis.gov/" target="_blank">Integrated Taxonomic Information System</a> for correct spelling of taxonomic names.</td></tr>
815
  
816
        <tr class="sectbody"> 
817
            <td class="rightCol"><span class="label">Taxonomic Rank</span></td>
818
            <td align="left" colspan="5">
819
                <input name="taxonRank" id="taxonRank" class="shortwidth">&nbsp;&nbsp;<span class="label"><span class="regtext">(e.g., Species)</span>
820
            </td>
821
        </tr>
822

    
823
        <tr class="sectbody"> 
824
            <td class="rightCol"><span class="label">Taxonomic Name</span></td>
825
            <td align="left" colspan="5">
826
                <input name="taxonName" id="taxonName" class="shortwidth">&nbsp;&nbsp;<span class="label"><span class="regtext">(e.g., <i>Ursus arctos</i>)</span>
827
            </td>
828
        </tr>
829

    
830
        <tr id="addTaxon" class="sectbody"> 
831
            <td></td>
832
            <td colspan="5" align="left"> <input type="button" value="Add Taxon"
833
                    onClick="addTaxon()">
834
            </td>
835
        </tr>
836

    
837
        [% numTaxa = 0 %]
838
        [% IF taxaCount %]
839
            [% numTaxa = taxaCount %]
840
            <tr class="sectbody" id="taxonHRRow">
841
                <td colSpan="6">
842
                    <hr width = "85%"/>
843
                </td>
844
            </tr>
845
        [% END %]
846
        <input type="hidden" name="taxaCount" value="[%numTaxa%]" id="taxaCount">
847
    
848
        [% cnt = 1 %]
849
        [% WHILE cnt <= numTaxa%]        
850
            <tr class="sectbody">
851
                <td class="rightCol">
852
                    <a style="cursor:pointer">
853
                        <img onClick="cleanTextNodes('taxonHRRow', 'addtaxarow');moveUpRow(event)"
854
                        src="[% contextUrl %]/style/images/previous.gif"
855
                        alt="Move Up" border="0"/>
856
                    </a>
857
                    <a style="cursor:pointer">
858
                        <img onClick="cleanTextNodes('taxonHRRow', 'addtaxarow');moveDownRow(event, 'addtaxarow')"
859
                        src="[% contextUrl %]/style/images/next.gif"
860
                        alt="Move Down" border="0"/>
861
                    </a>
862
                    <a style="cursor:pointer">
863
                        <img src="[% contextUrl %]/style/images/delete.gif"
864
                        onClick="delRow(event)" alt="Delete" border="0"/>
865
                    </a>
866
                </td>
867
                [% SET rank = "taxonRankName${cnt}" %]
868
                [% SET name = "taxonRankValue${cnt}" %]
869
                <td colspan="5" align ="left" style="cursor:pointer"
870
                    onClick="taxonEditRow(event, 0, '[%$rank%]', '[%$name%]')">
871
                    Rank: [%$rank%], Name: [%$name%]
872
                    <input name="taxonName" type="hidden" value="[%$name%]"/>
873
                    <input name="taxonRank" type="hidden" value="[%$rank%]"/>
874
            </tr>
875
            [% cnt = cnt + 1 %]
876
        [% END %]
877

    
878
     <tr class="sectbody" id="addtaxarow"> 
879
        <td class="bordertop" valign="top" align="right" ><span class="label">Taxonomic Reference</span></td>
880
        <td class="bordertop" align="left" colspan="5"><textarea rows="3" cols="30" name="taxaAuth">[% taxaAuth %]</textarea></td>
881
        </tr>
882
     <tr class="sectbody">
883
     <td></td>
884
     <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
885
     nomenclature revision).</span></td>
886
     </tr>   
887
   </table>
888
    [% END %]  
889

    
890
  [% IF modules.method == 'true' %]
891
  <table class="tables" cellpadding="5" cellspacing="0">  
892
    <tr class="sectheader">
893
      <td colspan="5" align="left">
894
        <span class="label">DATA COLLECTION METHODS</span>
895
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#Methods" target="guide" class="smalltext">(What's this?)</a>
896
      </td>
897
      <td class="rightCol"><span><a onClick="methodBit=swap(event, 'methodTable', methodBit)" style="cursor:pointer">Hide</a></span></td>
898
    </tr>
899
  </table>
900
 
901
   <table class="tables" cellpadding="5" cellspacing="0" id="methodTable">  
902

    
903
    <tr class="sectbody"> 
904
      <td class="rightCol"><span class="label">Method Title</span></td>
905
      <td colspan="5" align="left"><input type="text" name="methodTitle" value="[%methodTitle%]" class="longwidth"></td></tr>
906

    
907
       <tr class="sectbody"><td valign="top" class="rightCol"><span class="label">Method Description</span>      
908
        <td colspan="5" align="left">
909
        [% IF !methodPara %]
910
          <textarea rows="6" cols="60" name="methodPara"></textarea>
911
        [% END %]
912
        [% FOREACH para = methodPara %]
913
           <textarea rows="6" cols="60" name="methodPara">[% para %]</textarea>
914
        [% END %]
915
        </td></tr>
916
        
917
    <tr class="sectbody" id="addparabutton1">
918
    <td ></td>
919
    <td colspan="5" align="left">
920
          <input type="button" value="Add Paragraph to Method Description" 
921
                 onClick="addParagraph()"></td></tr>
922
   
923
     
924
    <tr class="sectbody">
925
      <td valign="top" align="right" class="bordertop">
926
       <span class="label">Extent of Study Description</span>
927
       </td>
928
        <td colspan="5" align="left" class="bordertop"><textarea rows="6" cols="60" name="studyExtentDescription">[% studyExtentDescription %]</textarea></td>
929
    </tr>
930
  
931
   <tr class="sectbody">
932
    <td>
933
    </td>
934
    <td colspan="5"><span class="regtext">
935
        Describe the temporal, spatial and taxonomic extent of the study,<br>
936
        supplementing the information on coverage provided above.  <br>
937
        For example, if the temporal coverage of the data is 1990-2000, you<br>
938
        might provide details about any years that were missed or the months<br>
939
        in which sampling occurred.</span>
940
    </td>
941
    </tr>
942
          
943
    <tr class="sectbody"><td class="bordertop" valign="top" align="right"><span class="label">Sampling Description</span></td>
944
        <td colspan="5" align="left" class="bordertop" ><textarea rows="6" cols="60" name="samplingDescription">[% samplingDescription %]</textarea></td></tr>
945
  
946
   <tr class="sectbody"><td><td colspan="5"><span class="regtext">
947
        Describe the sampling design of the study.  For example, you might <br> 
948
        describe the way in which treatments were assigned to sampling units.</span></td></tr>
949
      
950
    </table>     
951
   [% END %]
952

    
953
  <table class="tables" cellpadding="5" cellspacing="0">    
954
    <tr class="sectheader">
955
      <td colspan="5" align="left">
956
        <span class="label">DATA SET CONTACT</span>
957
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DataSetContactAddress" target="guide" class="smalltext">(What's this?)</a>
958
      </td>
959
      <td class="rightCol"><span><a onClick="dscBit=swap(event, 'dscTable', dscBit)" style="cursor:pointer">Hide</a></span></td>
960
    </tr>
961
  </table>
962

    
963
   <table class="tables" cellpadding="5" cellspacing="0" id="dscTable">  
964
  <tr class="sectbody"><td valign="top" align="left" colspan="6">
965
        <input type="CHECKBOX" name="useOrigAddress" onClick="copyContact()" id="copyCheckBox" [%useOrigAddress%]>
966
        <span class="regtext">Use the same name and address as the <span class="label">PRINCIPAL DATA SET OWNER</span> above.</span></td></tr> 
967
   <tr class="sectbody">
968
      <td class="rightCol"><span class="label">*First Name</span></td>
969
      <td colspan="5"><input type="TEXT" name="origNamefirstContact" id="contactNameFirst" value="[%origNamefirstContact%]" class="shortwidth"></td></tr>
970
    <tr class="sectbody">
971
      <td class="rightCol"><span class="label">*Last Name</span>
972
      <td colspan="5"><input type="TEXT" name="origNamelastContact" id="contactNameLast" value="[%origNamelastContact%]" class="shortwidth"></td></tr>
973
    <tr class="sectbody">
974
      <td class="rightCol"><span class="label">Organization Name</span>
975
      <td colspan="5"><input type="TEXT" name="origNameOrgContact" id="contactNameOrg" value="[%origNameOrgContact%]" class="longwidth"></td></tr>
976
    <tr class="sectbody">      
977
      [% IF required.contactEmailAddress == 'true' %]
978
        <td class="rightCol"><span class="label">*E-Mail</span>
979
      [% ELSE %]
980
        <td class="rightCol"><span class="label">E-Mail</span>
981
      [% END %]
982
      <td colspan="5"><input type="TEXT" name="origEmailContact" id="contactEmail" value="[%origEmailContact%]" class="shortwidth"></td></tr>
983
    <tr class="sectbody">
984
      <td class="rightCol"><span class="label">Phone</span>
985
      <td colspan="5"><input type="TEXT" name="origPhoneContact" id="contactPhone" value="[%origPhoneContact%]" class="shortwidth"></td></tr>
986
    <tr class="sectbody"> 
987
      <td class="rightCol"><span class="label">FAX</span>
988
      <td colspan="5"><input type="TEXT" name="origFAXContact" id="contactFAX" value="[%origFAXContact%]" class="shortwidth"></td></tr>
989
    <tr class="sectbody"><td valign="top" align="right"><span class="label">Street<br>Information</td>
990
      <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>
991
    <tr class="sectbody">    
992
      <td class="rightCol"><span class="label">City</span>
993
      <td colspan="5"><input type="TEXT" name="origCityContact" id="contactCity" value="[%origCityContact%]" class="shortwidth"></td></tr>
994
    <tr class="sectbody">
995
      <td class="rightCol"><span class="label">U.S. State or Territory</span>
996
      <td colspan="5"><select id="contactState" name="origStateContact" class="shortwidth">
997
      [% IF form == 're_entry' %]  
998
              <option>[%origStateContact%]</option>
999
      [% ELSE %]
1000
                <option>Select state or territory here.</option>
1001
            [% END %]
1002
          <option>Alabama</option>
1003
            <option>Alaska</option>
1004
            <option>American Samoa</option>
1005
            <option>Arizona</option>
1006
            <option>Arkansas</option>
1007
            <option>California</option>
1008
            <option>Colorado</option>
1009
            <option>Connecticut</option>
1010
            <option>Delaware</option>
1011
            <option>District of Columbia</option>
1012
            <option>Florida</option>
1013
            <option>Georgia</option>
1014
            <option>Guam</option>
1015
            <option>Hawaii</option>
1016
            <option>Idaho</option>
1017
            <option>Illinois</option>
1018
            <option>Indiana</option>
1019
            <option>Iowa</option>
1020
            <option>Kansas</option>
1021
            <option>Kentucky</option>
1022
            <option>Louisiana</option>
1023
            <option>Maine</option>
1024
            <option>Maryland</option>
1025
            <option>Massachusetts</option>
1026
            <option>Michigan</option>
1027
            <option>Minnesota</option>
1028
            <option>Mississippi</option>
1029
            <option>Missouri</option>
1030
            <option>Montana</option>
1031
            <option>Nebraska</option>
1032
            <option>Nevada</option>
1033
            <option>New Hampshire</option>
1034
            <option>New Jersey</option>
1035
            <option>New Mexico</option>
1036
            <option>New York</option>
1037
            <option>North Carolina</option>
1038
            <option>North Dakota</option>
1039
            <option>Northern Mariana Islands</option>
1040
            <option>Ohio</option>
1041
            <option>Oklahoma</option>
1042
            <option>Oregon</option>
1043
            <option>Pennsylvania</option>
1044
            <option>Puerto Rico</option>
1045
            <option>Rhode Island</option>
1046
            <option>South Carolina</option>
1047
            <option>South Dakota</option>
1048
            <option>Tennessee</option>
1049
            <option>Texas</option>
1050
            <option>Utah</option>
1051
            <option>Vermont</option>
1052
            <option>Virgin Islands</option>
1053
            <option>Virginia</option>
1054
            <option>Washington</option>
1055
            <option>West Virginia</option>
1056
            <option>Wisconsin</option>
1057
            <option>Wyoming</option>
1058
          </select></td></tr>
1059
     <tr class="sectbody">
1060
        <td class="rightCol"><span class="label">Other State/Province</span>
1061
  <td colspan="5"><input type="TEXT" name="origStateOtherContact" id="contactStateOther" value="[%origStateOtherContact%]" class="shortwidth"></td></tr>
1062
     <tr class="sectbody">     
1063
        <td class="rightCol"><span class="label">Postal Code</span>
1064
  <td colspan="5"><input type="TEXT" name="origZIPContact" class="shortwidth" id="contactZip" value="[%origZIPContact%]"></td></tr>
1065
     <tr class="sectbody">
1066
        <td class="rightCol"><span class="label">Country</span>
1067
        <td colspan="5"><input type="TEXT" name="origCountryContact" id="contactCountry" value="[%origCountryContact%]" class="shortwidth"></td></tr>
1068
     </table>
1069
   
1070
  <table class="tables" cellpadding="5" cellspacing="0">  
1071
    <tr class="sectheader">
1072
      <td colspan="5" align="left">
1073
        <span class="label">DISTRIBUTION INFORMATION</span>
1074
        <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#DistributionIinformation" target="guide" class="smalltext">(What's this?)</a>
1075
      </td>
1076
      <td class="rightCol"><span><a onClick="distBit=swap(event, 'distTable', distBit)" style="cursor:pointer">Hide</a></span></td>
1077
    </tr>
1078
  </table>
1079

    
1080
   <table class="tables" cellpadding="5" cellspacing="0" id="distTable">  
1081
  <tr class="sectbody"><td class="rightCol"><span class="label">Data Set Identifier</span></td>
1082
  <td colspan="5"><input type="TEXT" name="identifier" value="[%identifier%]" class="longwidth"></td></tr>
1083
  <tr class="sectbody"><td valign="top" align="right"><span class="label">Note:</span></td>
1084
     <td colspan="4" align="left"><span class="regtext">
1085
     If available, please enter a name or number that uniquely identifies and<br>
1086
     describes concisely the data set. Alternatively, provide other pertinent<br>
1087
     information that can identify and locate the data set within your site's<br>
1088
     data management system.</span></td><td></td></tr>
1089
  
1090
    <tr class="sectbody">
1091
        <td class="rightCol"><span class="label">*Data Medium</span></td>
1092
  
1093
        <td colspan="5" align="left">
1094
        [% IF form == 're_entry' && (dataMedium == "digital " || dataMedium == "digital")  %]  
1095
            <input type="radio"  name="dataMedium" onClick="handleOther(0, 'otherDM')" value="digital" CHECKED>
1096
            <span class="regtext">Digital&nbsp;&nbsp;</span></input>
1097
        [%ELSE%]
1098
            <input type="radio"  name="dataMedium" onClick="handleOther(0, 'otherDM')" value="digital">
1099
            <span class="regtext">Digital&nbsp;&nbsp;</span></input>
1100
        [% END %]
1101
        [% IF form == 're_entry' && (dataMedium == "hardcopy " || dataMedium == "hardcopy") %]  
1102
           <input type="radio"  name="dataMedium" onClick="handleOther(0, 'otherDM')" value="hardcopy" CHECKED>
1103
           <span class="regtext">Hardcopy&nbsp;&nbsp;</span></input>
1104
        [%ELSE%]
1105
           <input type="radio"  name="dataMedium" onClick="handleOther(0, 'otherDM')" value="hardcopy">
1106
           <span class="regtext">Hardcopy&nbsp;&nbsp;</span></input>
1107
        [% END %]
1108
        [% IF form == 're_entry' && dataMedium == "other" %]
1109
           <input type="radio" name="dataMedium" value="other" onClick="handleOther(1, 'otherDM')" CHECKED>
1110
           <span class="regtext">Other&nbsp;</span></input>
1111
        [%ELSE%]
1112
           <input type="radio"  name="dataMedium" onClick="handleOther(1, 'otherDM')" value="other">
1113
           <span class="regtext">Other&nbsp;</span></input>
1114
        [% END %]
1115

    
1116
  <input type="TEXT" name="dataMediumOther" value="[%dataMediumOther%]" id="otherDM" class="shortwidth"></input>
1117
        </td>
1118
    </tr>  
1119
  
1120
  <tr class="sectbody"><td class="rightCol"><span class="label">*Usage Rights</span></td>
1121
      <td colspan="5" align="left">
1122
      
1123
          [% IF form == 're_entry' && useConstraints == "no restrictions" %]      
1124
      <input type="radio"  name="useConstraints" onClick="handleOther(0, 'otherUC')" value="no restrictions" CHECKED>
1125
      <span class="regtext">No restrictions&nbsp;&nbsp;</span>
1126
          [%ELSE%]
1127
            <input type="radio"  name="useConstraints" onClick="handleOther(0, 'otherUC')" value="no restrictions">
1128
            <span class="regtext">No restrictions&nbsp;&nbsp;</span>
1129
          [%END%]
1130
          [% IF form == 're_entry' && useConstraints == "Obtain permission from data set owner(s)" %]      
1131
        <input type="radio"  name="useConstraints" onClick="handleOther(0, 'otherUC')" value="Obtain permission from data set owner(s)" CHECKED>
1132
        <span class="regtext">Obtain permission from data set owner(s)&nbsp;&nbsp;</span>
1133
          [%ELSE%]
1134
            <input type="radio"  name="useConstraints" onClick="handleOther(0, 'otherUC')" value="Obtain permission from data set owner(s)">
1135
            <span class="regtext">Obtain permission from data set owner(s)&nbsp;&nbsp;</span>
1136
          [%END%]
1137
          </td></tr>
1138
    
1139

    
1140
   
1141
   <tr class="sectbody"><td></td><td colspan="5" align="left">
1142
 
1143
    [% IF form == 're_entry' && useConstraints == "other" %]      
1144
      <input type="radio"  name="useConstraints" onClick="handleOther(1, 'otherUC')" value="other" CHECKED>
1145
      <span class="regtext">Other&nbsp;</span>
1146
    [%ELSE%]
1147
      <input type="radio"  name="useConstraints" onClick="handleOther(1, 'otherUC')" value="other">
1148
      <span class="regtext">Other&nbsp;</span>
1149
    [%END%]
1150
   <input type="TEXT" name="useConstraintsOther" id="otherUC" value="[%useConstraintsOther%]" size="49"></td</tr>
1151
   
1152
   
1153
   <tr class="sectbody"><td class="rightCol"><span class="label">URL</span></td>
1154
   <td colspan="5" align="left"><input type="TEXT" name="url" value="[%url%]" class="longwidth"></td></tr>
1155
   
1156
   <tr class="sectbody"><td valign="top" align="right"><span class="label">Additional Information</span>
1157
   <td colspan="5" align="left"><textarea rows="6" cols="60" name="addComments">[%addComments%]</textarea></td></tr>
1158
   
1159
   </table>
1160
   
1161
  [% IF modules.upload == 'true' %]
1162

    
1163
  <!-- Associated Data -->
1164
  <table class="tables" cellpadding="5" cellspacing="0">
1165
  <tr class="sectheader">
1166
    <td colspan="5" align="left">
1167
      <span class="label">UPLOAD DATA</span>
1168
      <a href="[% cgiPrefix %]/register-dataset.cgi?cfg=[%cfg%]&amp;stage=guide#XXX" target="guide" class="smalltext">(What's this?)</a>
1169
    </td>
1170
    <td class="rightCol"><span><a onClick="uploadBit=swap(event, 'uploadTable', uploadBit)" style="cursor:pointer">Hide</a></span></td>
1171
  </tr>
1172
   </table>
1173
  <table class="tables" cellpadding="5" cellspacing="0" id="uploadTable">
1174
  <tr class="sectbody">
1175
    <td class="rightCol"><span class="label">Upload Data File:</span></td>
1176
    <td colspan="5">
1177
        <input type="file" id="file_element" name="file_1" class="longwidth">
1178

    
1179
        [% IF form == 're_entry' && upCount %]
1180
           [% cnt = 0 %]
1181
           [% WHILE cnt < upCount %]
1182
                [% SET fileSum = "upload_${cnt}" %]
1183
                [% SET fileName = "uploadname_${cnt}" %]
1184
                [% SET fileType = "uploadtype_${cnt}" %] 
1185
                [% SET filePerm = "uploadperm_${cnt}" %]
1186
                [% IF fileSum %]
1187
                    <input type="hidden" name="[%fileSum%]" value="[% $fileSum %]"> 
1188
                    <input type="hidden" name="[%fileName%]" value="[% $fileName %]"> 
1189
                    <input type="hidden" name="[%fileType%]" value="[% $fileType %]"> 
1190
                [% END %]
1191
                [% cnt = cnt + 1 %]
1192
            [% END %]
1193
        <input type="hidden" id="upCount" name="upCount" value="[%upCount%]">
1194
        [% END %]
1195

    
1196
        <input type="hidden" id="fileCount" name="fileCount" value="[%fileCount%]"></td>
1197
  </tr>
1198
  <tr class="sectbody">
1199
    <td class="rightCol" valign="top"><span class="label">Attached Files:</span></td>
1200
    <td colspan="5" class="regtext">
1201
    [% IF !upCount %]
1202
        <div id="file_comment">
1203
            (<i>None currently attached</i>)
1204
        </div>
1205
    [% END %]
1206
    <div id="files_list">[% IF form == 're_entry' && upCount %]
1207
    [% cnt = 0 %]
1208

    
1209
    [% WHILE cnt < upCount %]
1210
        [% SET fileName = "uploadname_${cnt}" %]
1211
        [% SET filePerm = "uploadperm_${cnt}" %]
1212
        [% IF $filePerm == 'public' %]
1213
          [% SET perm_a = "checked" %]
1214
          [% SET perm_b = "" %]
1215
        [% ELSE %]
1216
          [% SET perm_a = "" %]
1217
          [% SET perm_b = "checked" %]
1218
        [% END %]
1219
        [% IF fileName %]<div>
1220
          [% $fileName %]
1221
          <input type="radio" name="[% filePerm %]" value="public" [% perm_a %]> Public
1222
          <input type="radio" name="[% filePerm %]" value="private" [% perm_b %]> Private
1223

    
1224
          <input type="button" value="Delete" onclick="deleteFile(event, [%fileName%]);"/></div>[% END %]
1225

    
1226
        [% cnt = cnt + 1 %]
1227
    [% END %]
1228
    [% END %]</div></td>
1229
  </tr>
1230
  </table>
1231
  
1232
  <script language="JavaScript" type="text/JavaScript">
1233
    var multi_selector = new MultiSelector( document.getElementById( 'files_list' ), 10);
1234
    multi_selector.addElement( document.getElementById( 'file_element' ) );
1235
  </script>
1236
  [% END %]
1237
   <table class="tables" cellpadding="5" cellspacing="0">    
1238
   <tr class="sectheader"><td colspan="6" align="left"></td></tr>
1239
   <tr class="sectheader"><td colspan="6" align="center" class="borderbottom"><input type="SUBMIT" onClick="sortInputTags()" value="Submit Data Set Description" name="SUBMIT">
1240
              
1241
    </table>
1242
    <p></p>
1243
    
1244
    					</div>
1245
					</div> <!-- end the accordinan -->
1246
   
1247
</form>
1248
			</div> <!-- end the row -->
1249
			
1250
		</div>
1251
	</article>
1252

    
1253
[% INCLUDE $templates.footer %]
(4-4/10)