-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanagement.xml
2427 lines (2168 loc) · 101 KB
/
management.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs title="CSCAP Site Management Form" >
<OAuth2>
<Service name="googleAPI" scope="https://spreadsheets.google.com/feeds">
</Service>
</OAuth2>
<Require feature="dynamic-height"/>
<Require feature="auth-refresh"/>
<Require feature="oauthpopup"/>
</ModulePrefs>
<Content type="html">
<![CDATA[
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css">
<style type="text/css">
.ui-widget{
font-size: 1em !important;
font: inherit;
}
.ui-state-active{
background: #d44716 !important; # blue is 1882f3
}
.optoptions{
font-style: italic;
}
.optheader{
font-weight: bold;
color: #d44716;
}
</style>
<script src="https://www.google.com/jsapi?key=ABQIAAAArXt77YptylBNPFEy0AgJxBQV4szfgV8zGZZkur1B-B3W8b5AThTSlomZliOt8JQHJGH1m63sgDu1rg" type="text/javascript"></script>
<!-- Initially displayed and then hidden once we are running -->
<div id="loading">
<p><strong>Management form is loading...</strong>
</div>
<!-- Displayed if this gadget needs oauth2 approval -->
<div id="approval" style="display: none">
This application is a "Google Gadget" written by Daryl Herzmann and needs authorization by you to view and save data to a dedicated spreadsheet for this dataset. <a id="personalize" onclick="javascript:showOneSection('waiting'); return true" target="approve">Click to authorize this gadget</a><p>The authorization step should open a new browser window and request permission to access spreadsheets on your behalf.</div>
<!-- Displayed once the approval process begins... -->
<div id="waiting" style="display: none">Please click <a href="#" onclick="javascript:bootstrap()">I've approved access</a> once you've approved access to your data.</div>
<!-- Our main 'window' -->
<div id="main" style="display: none">
<form name="management">
<input id="rowid" value="0" type="hidden" />
<input id="ipm_rowid" value="0" type="hidden" />
<p><strong>Select Research Site:</strong>
<select name="site" id="siteSelector" onChange="setSite(this.options[this.selectedIndex].value);">
<option value="invalid">Select Site from List...</option>
</select>
<div id="theform" style="display: none;">
<p><strong>Select Year. Enter information under all 5 tabs. Please click the "SUBMIT" button to save your edits for each tab you enter data for.</strong>
<div id="years">
<input type="radio" value="2011" id="y2011" name="year"/><label for="y2011">2011 Crop</label>
<input type="radio" value="2012" id="y2012" name="year"/><label for="y2012">2012 Crop</label>
<input type="radio" value="2013" id="y2013" name="year"/><label for="y2013">2013 Crop</label>
<input type="radio" value="2014" id="y2014" name="year"/><label for="y2014">2014 Crop</label>
<input type="radio" value="2015" id="y2015" name="year" checked="checked" /><label for="y2015">2015 Crop</label>
</div>
<div id="tabs">
<ul>
<li><a href="#tabs-1">Field Operations</a></li>
<li><a href="#tabs-2">Management</a></li>
<li><a href="#tabs-3">Pesticides</a></li>
<li><a href="#tabs-4">Site Map & GPS</a></li>
<li><a href="#tabs-5">Notes</a></li>
</ul>
<div id="tabs-1">
<p><strong>Add to or edit previous Field Operations entries for <span id="foryear"></span>:</strong>
<ul id='previousOperations'>
</ul>
<div id="previousOperationEdit" style="display: none; border: 2px #f00 solid; padding: 5px;">You are now viewing previously entered data, if you wish to make changes please be sure to save this once done. To cancel
any changes you make, click the CLEAR FORM button at the bottom.</div>
<p><input type="button" value="Clear Form for New Operation" onClick="javascript: clearData();">
<p><strong>Select Operation:</strong>
<select name="operation" id="operation" class="optoption" onChange="setOperation(this.options[this.selectedIndex].value);">
<option value="invalid" class="optheader">Select From List</optidon>
<option disabled="disabled" value="invalid" class="optheader">... Planting Operations ...</option>
<option value="plant_corn">Corn Planting</option>
<option value="plant_soy">Soybean Planting</option>
<option value="plant_rye">Rye Planting into Corn and Soy Residue</option>
<option value="plant_rye-corn-res">Rye Planting into Corn Residue</option>
<option value="plant_rye-soy-res">Rye Planting into Soy Residue</option>
<option value="plant_wheat">Wheat Planting</option>
<option value="plant_alfalfa">Alfalfa Planting</option>
<option value="plant_other">Other Planting</option>
<option disabled="disabled" value="invalid" class="optheader">... Harvest Operations ...</option>
<option value="harvest_corn">Corn Harvest</option>
<option value="harvest_soy">Soybean Harvest</option>
<option value="termination_rye_corn">Rye Termination to Plant Corn</option>
<option value="termination_rye_soy">Rye Termination to Plant Soybean</option>
<option value="harvest_wheat">Wheat Harvest</option>
<option value="termination_alfalfa_corn">Alfalfa Termination to Plant Corn</option>
<option value="harvest_other">Other Harvest</option>
<option disabled="disabled" value="invalid" class="optheader">... Tillage + Residue Management ...</option>
<option value="tillage_chisel">Chisel Tillage</option>
<option value="tillage_chopstalks">Chop Stalks</option>
<option value="tillage_cultivate">Field Cultivate</option>
<option value="tillage_rip">Deep Rip Tillage</option>
<option value="tillage_disk">Disk Tillage</option>
<option value="tillage_plow">Plow</option>
<option value="tillage_rotaryhoe">Rotary Hoe</option>
<option value="tillage_rowcultivate">Row Cultivate</option>
<option value="tillage_strip">Strip Tillage</option>
<option value="tillage_surface">Surface Tillage</option>
<option value="tillage_vertical">Vertical Tillage</option>
<option disabled="disabled" value="invalid" class="optheader">... Soil Treatments ...</option>
<option value="soiladmend_lime">Lime Application</option>
<option value="manure_manure">Manure Application</option>
<option value="fertilizer_synthetic">Synthetic Fertilizer</option>
<option disabled="disabled" value="invalid" class="optheader">... Sampling Date ...</option>
<option value="sample_canopy">Canopy N-Sensing</option>
<option value="sample_covercrop">Cover Crop Sampling</option>
<option value="sample_soilnitrate">Soil Nitrate</option>
</select>
<p><div id="operation_label" style="font-weight: bold;">Operation Date:</div>
<input type="text" id="datepicker"></p>
<div id="fertilizer_options" style="display: none;">
<p><strong>Form of Fertilizer:</strong>
<select id="fertilizer_form">
<option value="invalid">Select from List</option>
<option value="liquid">Liquid</option>
<option value="solid">Solid (granular)</option>
<option value="gas">Gas (anhydrous)</option>
</select>
<p><strong>Which crop was this applied to:</strong>
<select id="fertilizer_crop">
<option value="invalid">Select from list</option>
<option value="corn">Corn</option>
<option value="soybean">Soybean</option>
<option value="wheat">Wheat</option>
<option value="oats">Oats</option>
<option value="alfalfa">Alfalfa</option>
<option value="multiple">multiple crops (explain in Comments)</option>
<option value="other">other (explain in Comments)</option>
</select>
<p><strong>Application Type:</strong>
<select id="fertilizer_apptype" onChange="showFertilizerInjection(this.options[this.selectedIndex].value);">
<option value="invalid">Select from List</option>
<option value="broadcast">(1) Broadcast - surface applied</option>
<option value="broadcast in every row">(2) Placed in the row - surface applied</option>
<option value="injected in every row">(3) Placed in the row - injected</option>
<option value="broadcast between row">(4) Placed between rows - surface applied</option>
<option value="injected between rows">(5) Placed between rows - injected</option>
<option value="broadcast between every other row">(6) Placed between every other row - surface applied</option>
<option value="injected between every other row">(7) Placed between every other row - injected</option>
<option value="injected diagonally">(8) Diagonally injected across field</option>
<option value="other">(9) Other (explain in Comments)</option>
</select>
<div id="fertilizer_injected_options" style="display: none;">
<table><tr>
<th>What was the injection depth?</th>
<td><input type="text" id="fertilizer_injection_depth" size="6" /></td>
<td><div id="fertilizer_injection_depth_units">
<input type="radio" value="inch" id="fertilizer_injection_depth_units_inch"
name="fertad" checked="checked"/><label for="fertilizer_injection_depth_units_inch">inch</label>
<input type="radio" value="cm" id="fertilizer_injection_depth_units_cm"
name="fertad"/><label for="fertilizer_injection_depth_units_cm">cm</label>
</div>
</td></tr>
</table>
</div><!-- End of fertilizer_injected_options -->
<p><strong>What is the chemical formulation of the fertilizer applied?
(example: urea, superphosphate, etc.)</strong>
<br /><input type="text" id="fertilizer_formulation" size="60" />
<p><strong>Was a stabilizer (e.g. inhibitor or slow release) used?</strong>
<br /><select id="fertilizer_stabilizer" onChange="showFertilizerStabilizer(this.options[this.selectedIndex].value);">
<option value="invalid">Select from List</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
<div id="fertilizer_stabilizer_options" style="display: none;">
<p><strong>What type of stabilizer was used?</strong>
<br /><select id="fertilizer_stabilizer_used">
<option value="invalid">Select from List</option>
<option value="urease">urease inhibitor</option>
<option value="nitrification">nitrification inhibitor</option>
<option value="slow">slow release</option>
<option value="other">Other</option>
</select>
<p><strong>Select the stabilizer product name:</strong>
<br /><select id="fertilizer_stabilizer_name">
<option value="invalid">Select from List</option>
<option value="n-serve">N-Serve</option>
<option value="instinct">Instinct</option>
<option value="agrotain">Agrotain</option>
<option value="agrotain-plus">Agrotain Plus</option>
<option value="esn">ESN</option>
<option value="super u">Super U</option>
<option value="other">Other</option>
</select>
</div>
<p>If you apply a fertilizer blend (multiple sources), create a different entry for each product.
<p>
<table>
<tr><th width="50%">Option A</th><th width="50%">Option B</th></tr>
<tr><td>
<strong>Product Rate (lbs of product per acre):</strong>
<br /><input type="text" id="product_rate" size="5">
</td><td>
Use this side if you know the quantity applied per nutrient. Do not
combine multiple applications though as we need to know the dates
associated with each.
</td></tr>
<tr><td>
<strong>Fertilizer Formulation (report in percent):</strong>
<br /><i>Example: 100 lbs/acre of 18-46-0 was applied. 100 should be entered as
the product rate (above) with 18 in the %N box and 46 in the %P<sub>2</sub>O<sub>5</sub> box
below. The elemental form of each will be calculated in the database
using these values.</i>
<br /><input type="text" id="nitrogen_rate" size="5" value="0">
<label for="nitrogen_rate">% N (Nitrogen)</label>
<br /><input type="text" id="phosphate_rate" size="5" value="0">
<label for="phosphate_rate">% P<sub>2</sub>O<sub>5</sub> (Phosphate)</label>
<br /><input type="text" id="phosphorus_rate" size="5" value="0">
<label for="phosphorus_rate">% P (Phosphorus)</label>
<br /><input type="text" id="potash_rate" size="5" value="0">
<label for="potash_rate">% K<sub>2</sub>O (Potash)</label>
<br /><input type="text" id="potassium_rate" size="5" value="0">
<label for="potassium_rate">% K (Potassium)</label>
<br /><input type="text" id="sulfur_rate" size="5" value="0">
<label for="sulphur_rate">% S (Sulfur)</label>
<br /><input type="text" id="zinc_rate" size="5" value="0">
<label for="zinc_rate">% Zn (Zinc)</label>
<br /><input type="text" id="magnesium_rate" size="5" value="0">
<label for="magnesium_rate">% Mg (Magnesium)</label>
<br /><input type="text" id="calcium_rate" size="5" value="0">
<label for="calcium_rate">% Ca (Calcium)</label>
<br /><input type="text" id="iron_rate" size="5" value="0">
<label for="iron_rate">% Fe (Iron)</label>
</td><td valign="top">
<strong>Fertilizer Formulation (report in pounds per acre):</strong>
<br /><input type="text" id="nitrogen_rate_lbs" size="5" value="0">
<label for="nitrogen_rate_lbs">lbs N (Nitrogen) per acre</label>
<br /><input type="text" id="phosphate_rate_lbs" size="5" value="0">
<label for="phosphate_rate_lbs">lbs P<sub>2</sub>O<sub>5</sub> per acre (Phosphate)</label>
<br /><input type="text" id="phosphorus_rate_lbs" size="5" value="0">
<label for="phosphorus_rate_lbs">lbs P (Phosphorus) per acre</label>
<br /><input type="text" id="potash_rate_lbs" size="5" value="0">
<label for="potash_rate_lbs">lbs K<sub>2</sub>O (Potash) per acre</label>
<br /><input type="text" id="potassium_rate_lbs" size="5" value="0">
<label for="potassium_rate_lbs">lbs K (Potassium) per acre</label>
<br /><input type="text" id="sulfur_rate_lbs" size="5" value="0">
<label for="sulphur_rate_lbs">lbs S (Sulfur) per acre</label>
<br /><input type="text" id="zinc_rate_lbs" size="5" value="0">
<label for="zinc_rate_lbs">lbs Zn (Zinc) per acre</label>
<br /><input type="text" id="magnesium_rate_lbs" size="5" value="0">
<label for="magnesium_rate_lbs">lbs Mg (Magnesium) per acre</label>
<br /><input type="text" id="calcium_rate_lbs" size="5" value="0">
<label for="calcium_rate_lbs">lbs Ca (Calcium) per acre</label>
<br /><input type="text" id="iron_rate_lbs" size="5" value="0">
<label for="iron_rate_lbs">lbs Fe (Iron) per acre</label>
</td></tr></table>
</div>
<div id="soiladmend_options" style="display: none;">
<p><strong>Current soil pH of the site:</strong>
<input type="text" id="soiladmend_current_ph" width="10" />
<p><strong>Target soil pH of the site:</strong>
<input type="text" id="soiladmend_target_ph" width="10" />
<p>
<div id="soiladmend_rate_units" style="float:right;">
<input type="radio" value="hectare" id="soiladmend_rate_units_hectare" name="soiladmend_rate_units" checked="checked"/><label for="soiladmend_rate_units_hectare">Mg per hectare</label>
<input type="radio" value="acre" id="soiladmend_rate_units_acre" name="soiladmend_rate_units"/><label for="soiladmend_rate_units_acre">tons per acre</label>
</div>
<strong>Application Rate:</strong>
<input type="text" id="lime_rate">
<br clear="all" />
<p><strong>What is the Neutralizing Index value of the material?</strong>
<input type="text" id="soiladmend_neutral_index" width="10" maxlength="3" />
</div>
<div id="manure_options" style="display: none;">
<strong>Source of Manure e.g. hog, etc.:</strong>
<input type="text" id="manure_source" />
<p><strong>What is the composition of this manure?</strong>
<br /><select id="manure_composition">
<option value="invalid">Select from List</option><option value="farmyard">Farmyard manure</option><option value="green">Green manure</option><option value="straw">Straw</option><option value="slurry">Slurry animal waste</option><option value="compost">Compost</option><option value="beancake">Bean cake</option><option value="human">Human waste</option><option value="poultry">Poultry waste</option><option value="sewage">Sewage sludge</option><option value="meat+blood">Meat or blood meal</option><option value="other">Other</option>
</select>
<p><strong>What was the application method?</strong>
<br /><select id="manure_method" onChange="showManureMethodOptions(this.options[this.selectedIndex].value);">
<option value="invalid">Select from List</option>
<option value="broadcast without cultivation">Broadcast without cultivation</option>
<option value="broadcast with cultivation">Broadcast with cultivation</option>
<option value="injected">Injected (e.g. knifed)</option>
<option value="other">Other</option>
</select>
<div id="manure_method_options" style="display: none;">
<table><tr>
<th>What was the injection depth?</th>
<td><input type="text" id="manure_injection_depth" size="6" /></td>
<td><div id="manure_injection_depth_units">
<input type="radio" value="inch" id="manure_injection_depth_units_inch" name="mad" checked="checked"/><label for="manure_injection_depth_units_inch">inch</label>
<input type="radio" value="cm" id="manure_injection_depth_units_cm" name="mad"/><label for="manure_injection_depth_units_cm">cm</label>
</div>
</td></tr>
</table>
</div><!-- End of manure_method_options -->
<p><strong>Was a stabilizer (e.g. inhibitor or slow release) used?</strong>
<br /><select id="manure_stabilizer" onChange="showManureStabilizer(this.options[this.selectedIndex].value);">
<option value="invalid">Select from List</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
<div id="manure_stabilizer_options" style="display: none;">
<p><strong>What type of stabilizer was used?</strong>
<br /><select id="manure_stabilizer_used">
<option value="invalid">Select from List</option>
<option value="urease">urease inhibitor</option>
<option value="nitrification">nitrification inhibitor</option>
<option value="slow">slow release</option>
<option value="other">Other</option>
</select>
<p><strong>Select the stabilizer product name:</strong>
<br /><select id="manure_stabilizer_name">
<option value="invalid">Select from List</option>
<option value="n-serve">N-Serve</option>
<option value="instinct">Instinct</option>
<option value="agrotain">Agrotain</option>
<option value="agrotain-plus">Agrotain Plus</option>
<option value="esn">ESN</option>
<option value="super u">Super U</option>
<option value="other">Other</option>
</select>
</div><!-- End of manure_stabilizer -->
<p>
<table>
<tr><th>Application Rate:</th>
<td><input type="text" id="manure_rate" /></td>
<td>
<div id="manure_rate_units">
<input type="radio" value="gpa" id="manure_rate_units_gpa" name="manure_rate_units" checked="checked"/><label for="manure_rate_units_gpa">gallons per acre</label>
<input type="radio" value="tpa" id="manure_rate_units_tpa" name="manure_rate_units"/><label for="manure_rate_units_tpa">tons per acre</label>
<input type="radio" value="lph" id="manure_rate_units_lph" name="manure_rate_units"/><label for="manure_rate_units_lph">L per hectare</label>
<input type="radio" value="mgph" id="manure_rate_units_mgph" name="manure_rate_units"/><label for="manure_rate_units_mgph">Mg per hectare</label>
</div></td></tr></table>
<br clear="all"/>
<p><strong>Nutrient analysis of manure:</strong>
<br /><input type="text" id="manure_nitrogen_rate" size="5" value="0">
<label for="manure_nitrogen_rate">% N (Total Nitrogen (TKN))</label>
<br /><input type="text" id="manure_phosphate_rate" size="5" value="0">
<label for="manure_phosphate_rate">% P<sub>2</sub>0<sub>5</sub> (Phosphate)</label>
<br /><input type="text" id="manure_potash_rate" size="5" value="0">
<label for="manure_potash_rate">% K<sub>2</sub>0 (Potash)</label>
<br /><input type="text" id="manure_sulfur_rate" size="5" value="0">
<label for="manure_sulfur_rate">% S (Sulfur)</label>
<br /><input type="text" id="manure_calcium_rate" size="5" value="0">
<label for="manure_calcium_rate">% Ca (Calcium)</label>
<br /><input type="text" id="manure_magnesium_rate" size="5" value="0">
<label for="manure_magnesium_rate">% Mg (Magnesium)</label>
</div>
<div id="sample_options" style="display: none;">
<p>Please include additional metadata about the sampling event where
appropriate. You can enter free-form comments to further describe the
sampling that was done. The actual data for these sampled are stored
elsewhere.</p>
<br /><input type="text" id="sample_growth_stage" size="5" value="-">
<label for="sample_growth_stage">Sample Growth Stage</label>
<br /><input type="text" id="sample_height" size="5" value="-">
<label for="sample_height">Canopy Height (meters)</label>
</div>
<div id="plant_options" style="display: none;">
<div id="plant_rye_options" style="display: none;">
<p><strong>How was the rye seeded?</strong>
<br /><select id="plantryemethod">
<option value="broadcast">Broadcast</option>
<option value="drilled">Drilled</option>
<option value="other">Other (specify in comments)</option>
</select>
</p>
</div><!-- end of plant_rye_options -->
<table>
<tr><td><strong>Hybrid or Variety Planted:</strong></td>
<td><input type="text" id="plant_hybrid"></td><td>(ex: Pioneer 1234)</td></tr>
<tr><td><strong>Maturity of Hybrid or Variety:</strong></td>
<td><input type="text" id="plant_maturity"></td>
<td>For corn, the relative maturity (85-125). For soybean, a value between 1.0 and 4.0</td></tr>
<tr><td><strong>Seeding Rate:</strong></td>
<td><input type="text" id="plant_rate"></td>
<td><div id="plant_rate_units">
<input type="radio" value="hectare" id="plant_rate_units_hectare" name="plant_rate_units" checked="checked"/><label for="plant_rate_units_hectare">seeds per hectare</label>
<input type="radio" value="acre" id="plant_rate_units_acre" name="plant_rate_units"/><label for="plant_rate_units_acre">seeds per acre</label>
<input type="radio" value="lbs" id="plant_rate_units_lbs" name="plant_rate_units"/><label for="plant_rate_units_lbs">lbs per acre</label>
</div></td></tr>
<tr><td colspan="3">Note: To convert bu/acre to lbs/acre use: rye (56 lbs/bu),
alfalfa (60 lbs/bu), and wheat (60 lbs/bu).</td></tr>
</table>
</div><!-- End of plant_options -->
<div id="harvest_options" style="display: none;">
</div><!-- End of harvest_options -->
<div id="termination_options" style="display: none;">
<p><strong>How was the crop terminated?</strong>
<select id="terminate_method">
<option value="invalid">Select from List</option>
<option value="herbicide">Herbicide
<option value="tillage">Tillage
<option value="herbicide+tillage">Herbicide and Tillage
<option value="crimping">Crimping (rye only)
<option value="other">Other
</select>
</div><!-- End of termination_options -->
<div id="termination2_options" style="display: none;">
<p><strong>If biomass samples were collected, please enter the date of sampling. If
sampled more than once, enter each date.</strong>
<br />Date 1: <input type="text" id="tdatepicker1">
Date 2: <input type="text" id="tdatepicker2">
</div><!-- End of termination2_options -->
<div id="tillage_options" style="display: none;">
<div style="float: left;"><strong>Tillage Depth (if applicable):</strong>
<input type="text" id="tillage_depth" size="5"></div>
<div id="tillage_depth_units" style="float:right;">
<input type="radio" value="cm" id="tillage_depth_units_cm" name="tillage_depth_units" checked="checked"/><label for="tillage_depth_units_cm">centimeters</label>
<input type="radio" value="in" id="tillage_depth_units_in" name="tillage_depth_units"/><label for="tillage_depth_units_in">inches</label>
</div>
</div>
<br clear="all"/>
<p><strong>Comments:</strong>
<br />
<textarea name="comments" id="comments" cols="60" rows="6"></textarea>
<p>
<input id="submitbutton" type="button" value="SUBMIT" onClick="javascript: saveOperationData();">
<input type="button" onClick="javascript: clearData();" value="CLEAR FORM" />
</div>
<div id="tabs-2">
<div id="managementTabMessage" style="display:none; padding: 5px; border: 2px solid #f00;">Management information not found for this year.</div>
<p><strong>Was this crop irrigated?</strong>
<select id="irrigation" onChange="irrigation_show(this.options[this.selectedIndex].value);">
<option value="invalid">Select from List</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
<div id="irrigation-sub" style="display:none;">
<p><table
<tr><td><strong>Enter the total amount applied during the growing season:</strong></td><td>
<input type="text" size="5" id="irrigation_amount" /></td><td>
<div id="irrigation_units" style="float:right;">
<input type="radio" value="cm" id="irrigation_units_cm" name="irrigation_units" checked="checked"/><label for="irrigation_units_cm">centimeters</label>
<input type="radio" value="in" id="irrigation_units_in" name="irrigation_units"/><label for="irrigation_units_in">inches</label>
</div></td></tr></table>
<p><strong>What method was used for irrigation?</strong>
<select id="irrigation_method">
<option value="invalid">Select from List</option>
<option value="overhead">overhead (pivot/linear system)
<option value="sprinkler">sprinkler
<option value="subsurface">subsurface drip
<option value="flood">flood (furrow/gravity)
</select>
</div>
<p><strong>Was crop residue (biomass) removed at or after grain harvest?</strong>
<select id="residue_removal" onChange="residue_show(this.options[this.selectedIndex].value);">
<option value="invalid">Select from List</option>
<option value="yes">Yes</option>
<option value="no">No</option>
<option value="varies">Yes and No (Varies by Treatment)</option>
</select>
<div id="residue-sub-no" style="display:none;">
</div>
<div id="residue-sub-yes" style="display:none;">
<p><strong>If answered "Yes" or "Yes and No"; how was the crop residue removed from the applicable plots?</strong>
<br /><select id="residue_how">
<option value="invalid">Select from List</option>
<option value="burning">Burning</option>
<option value="mechanical">Mechanical</option>
<option value="mechanical_cobs">Mechanical - Cobs Only</option>
<option value="mowed">Mowed</option>
<option value="n/a">Not Applicable</option>
<option value="other">Other</option>
</select>
<p><strong>What amount of residue was removed? Enter the:</strong>
<br />Biomass weight <input type="text" id="residue_biomass_weight" size="10" />
<div id="residue_biomass_weight_units">
<input type="radio" value="lbs" id="residue_biomass_weight_units_lbs" name="residue_biomass_weight_units" checked="checked"/><label for="residue_biomass_weight_units_lbs">lbs per acre</label>
<input type="radio" value="kg" id="residue_biomass_weight_units_kg" name="residue_biomass_weight_units" /><label for="residue_biomass_weight_units_kg">kg per acre</label>
</div>
<br />Moisture content <input type="text" id="residue_biomass_moisture" size="4" /> (%)
</div><!-- End of residue-sub-yes -->
<p><strong>What is the estimated percent of residue cover on the surface at planting? Take into account tillage and residue removal.</strong>
<br />
<select id="residue_planting">
<option value="invalid">Select from List</option>
<option value="varies">Varies by Treatment</option>
<option value="30+">More than 30% (Conservation Tillage)</option>
<option value="15-30">Between 15-30% (Reduced Tillage)</option>
<option value="0-15">Less than 15% (Conventional Tillage)</option>
</select>
<br />If residue varies by treatment, you will enter this information in a separate spreadsheet.
<p><strong>What type of residue existed on the surface at planting?</strong>
<select id="residue_type">
<option value="invalid">Select from List</option>
<option value="corn">Corn</option>
<option value="soybean">Soybean</option>
<option value="wheat">Wheat</option>
<option value="oats">Oats</option>
<option value="alfalfa">Alfalfa</option>
<option value="rye and corn">Rye and Corn</option>
<option value="rye and soybean">Rye and Soybean</option>
<option value="red clover">Red Clover</option>
<option value="none">None (biomass removed)</option>
<option value="varies">Varies by Treatment</option>
<option value="n/a">Not Applicable</option>
</select>
<!--
<p><strong>Was there a cover crop present at planting?</strong>
<select id="cover_crop">
<option value="invalid">Select from List</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
<p><strong>Was manure applied to the field?</strong>
<select id="manure">
<option value="invalid">Select from List</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
-->
<p><strong>Was lime applied to this field prior to 2011? If within the past 5 years, enter the year here</strong>
<input type="text" id="lime_year" size="10" maxlength="4" />
<p><strong>Were any inorganic or organic amendments applied to the site that are not entered under the Operations tab?</strong>
<select id="organic_amendments">
<option value="invalid">Select from List</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
<p><strong>If yes, enter the type of amendment here.</strong>
<textarea id="organic_amendments_text" cols="60" rows="1"></textarea>
<br clear="all"/>
<p><strong>Comments:</strong>
<br />
<textarea name="management_comments" id="management_comments" cols="60" rows="6"></textarea>
<p>
<input id="submitbutton2" type="button" value="SUBMIT" onClick="javascript: saveManagementData();">
<input type="button" value="CLEAR FORM" onClick="javascript: clearManagementData();">
</div><!-- End of tabs-2 -->
<div id="tabs-3">
<p><strong>Add to or edit previous Pesticide entries for <span id="ipm_foryear"></span>:</strong>
<ul id='previousIpmOperations'>
</ul>
<div id="previousIpmOperationEdit" style="display: none; border: 2px #f00 solid; padding: 5px;">You are now editing a previously saved operation, please be sure to save this once done. To cancel
this edit, click the CLEAR FORM button at the bottom.</div>
<p><strong>Select Operation:</strong>
<select name="ipm_operation" id="ipm_operation" class="optoption" onChange="setIpmOperation(this.options[this.selectedIndex].value);">
<option value="invalid" class="optheader">Select From List</optidon>
<option value="herbicide">Herbicide</option>
<option value="insecticide">Insecticide</option>
<option value="fungicide">Fungicide</option>
<option value="seed">Seed Treatment</option>
</select>
<div id="ipm_date" style="display: block;">
<p><strong>Application Date:</strong>
<input type="text" id="ipm_datepicker">
</div>
<div id="seed_options" style="display: none;">
<p>Note: Report all seed treatments. This includes standard seed treatments
done by the company or dealer; look on the hybrid bag for the product names.
Do not report the product rate.
<p><strong>Timing:</strong>
<select id="seed_timing">
<option value="seed_applied">Seed Applied</option>
</select>
<p><strong>Application made to or for:</strong>
<select id="seed_crop"><option value="invalid">Select from List</option><option value="corn">Corn</option><option value="soybean">Soybean</option><option value="rye">Rye</option><option value="wheat">Wheat</option><option value="alfalfa">Alfalfa</option><option value="other">Other</option>
</select>
<p><strong>Product Name Applied (example: Poncho)</strong>
<br />1. <input type="text" id="seed_product1" />
<br />2. <input type="text" id="seed_product2" />
<br />3. <input type="text" id="seed_product3" />
<br />4. <input type="text" id="seed_product4" />
<p><strong>Justification for action.</strong> Note: This may include any measurements of pest abundance or relevant economic thresholds.
<textarea id="seed_justify" rows="4" cols="60"></textarea>
<p><strong>Reference.</strong> Note: This may include a discussion with an
IPM consultant (e.g., county or university extension specialists) or
published guideline (e.g., online IPM newsletter) used in the decision
making process that led to the use of a pest-management strategy (e.g.,
application of herbicide, insecticide, or fungicide).
<br /><textarea id="seed_reference" rows="6" cols="60"></textarea>
<p><strong>Any additional comments?</strong>
<textarea id="seed_comments" rows="6" cols="60"></textarea>
</div>
<div id="herbicide_options" style="display: none;">
<p>Note: If you <strong>tank-mixed</strong> several herbicides together enter each product individually under Product Applied and the respective rate for each.
<p>Note: You do not need to separate products like Bicep II Magnum into active ingredients unless you
think it is unknown or confusing. If this is the case, insert active
ingredients under Comments.
<p>Note: Report all seed treatments. This includes standard seed treatments
done by the company or dealer; look on the hybrid bag for the product names.
Do not report the product rate.
<p><strong>Timing:</strong>
<select name="herbicide_timing" id="herbicide_timing">
<option value="invalid">Select from List</option>
<option value="fall_application">Fall Application</option>
<option value="burndown_only">Burndown Only</option>
<option value="seed_applied">Seed Applied</option>
<option value="preplant_only">Preplant Only</option>
<option value="burndown+preplant">Burndown and Preplant</option>
<option value="pre_emerge">Pre Emerge</option>
<option value="post_emerge">Post Emerge</option>
<option value="harvest_aid">Harvest Aid</option>
</select>
<p><strong>Application made to or for:</strong>
<select id="herbicide_crop">
<option value="invalid">Select from List</option>
<option value="corn">Corn</option>
<option value="soybean">Soybean</option>
<option value="rye">Rye</option>
<option value="wheat">Wheat</option>
<option value="alfalfa">Alfalfa</option>
<option value="other">Other</option>
</select>
<p>
<table>
<tr><th>Total liquid application rate: (optional)</th>
<td><input type="text" id="herbicide_total_rate" size="10" /></td>
<td>
<div id="herbicide_total_rate_units">
<input type="radio" value="gpa" id="herbicide_total_rate_units_gpa" name="herbicide_total_rate_units" checked="checked"/><label for="herbicide_total_rate_units_gpa">gallons per acre</label>
<input type="radio" value="lha" id="herbicide_total_rate_units_lha" name="herbicide_total_rate_units"/><label for="herbicide_total_rate_units_lha">L per hectare</label>
</div>
</td></tr>
<tr><th>Application Pressure: (optional)</th>
<td><input type="text" id="herbicide_pressure" size="10" /></td>
<td>
<div id="herbicide_pressure_units">
<input type="radio" value="psi" id="herbicide_pressure_units_psi" name="herbicide_pressure_units" checked="checked"/><label for="herbicide_pressure_units_psi">psi</label>
<input type="radio" value="kpa" id="herbicide_pressure_units_kpa" name="herbicide_pressure_units"/><label for="herbicide_pressure_units_kpa">kPa</label>
</div>
</td></tr>
</table>
<p><strong>Method of application:</strong>
<select id="herbicide_method">
<option value="invalid">Select from List</option>
<option value="ground">Ground</option>
<option value="aerial">Aerial</option>
</select>
<p><table>
<tr>
<th>Product Name Applied (example: Bicep II Magnum)</th>
<th>Product Rate Applied</th>
<th>Rate Units</th>
<th></th>
</tr>
<tr><td>1.
<input type="text" name="herbicide_product1" id="herbicide_product1" />
</td><td>
<input type="text" name="herbicide_rate1" id="herbicide_rate1" size="5"/>
</td>
<td>
<div id="herbicide_rate_units1a">
<input type="radio" value="dry" id="herbicide_rate_units1a_dry" name="herbicide_rate_units1a"/><label for="herbicide_rate_units1a_dry">oz (dry)</label>
<input type="radio" value="wet" id="herbicide_rate_units1a_wet" name="herbicide_rate_units1a" checked="checked"/><label for="herbicide_rate_units1a_wet">oz (liquid)</label>
</div>
</td>
<td>
<div id="herbicide_rate_units1b">
<input type="radio" value="hectare" id="herbicide_rate_units1b_hectare" name="herbicide_rate_units1b"/><label for="herbicide_rate_units1b_hectare">per hectare</label>
<input type="radio" value="acre" id="herbicide_rate_units1b_acre" name="herbicide_rate_units1b" checked="checked"/><label for="herbicide_rate_units1b_acre">per acre</label>
</div>
</td></tr>
<tr><td>2.
<input type="text" id="herbicide_product2" />
</td><td>
<input type="text" name="herbicide_rate2" id="herbicide_rate2" size="5"/>
</td><td>
<div id="herbicide_rate_units2a">
<input type="radio" value="dry" id="herbicide_rate_units2a_dry" name="herbicide_rate_units2a"/><label for="herbicide_rate_units2a_dry">oz (dry)</label>
<input type="radio" value="wet" id="herbicide_rate_units2a_wet" name="herbicide_rate_units2a" checked="checked"/><label for="herbicide_rate_units2a_wet">oz (liquid)</label>
</div>
</td>
<td>
<div id="herbicide_rate_units2b">
<input type="radio" value="hectare" id="herbicide_rate_units2b_hectare" name="herbicide_rate_units2b"/><label for="herbicide_rate_units2b_hectare">per hectare</label>
<input type="radio" value="acre" id="herbicide_rate_units2b_acre" name="herbicide_rate_units2b" checked="checked"/><label for="herbicide_rate_units2b_acre">per acre</label>
</div>
</td></tr>
<tr><td>3.
<input type="text" name="herbicide_product3" id="herbicide_product3" />
</td><td>
<input type="text" name="herbicide_rate3" id="herbicide_rate3" size="5"/>
</td><td>
<div id="herbicide_rate_units3a">
<input type="radio" value="dry" id="herbicide_rate_units3a_dry" name="herbicide_rate_units3a"/><label for="herbicide_rate_units3a_dry">oz (dry)</label>
<input type="radio" value="wet" id="herbicide_rate_units3a_wet" name="herbicide_rate_units3a" checked="checked"/><label for="herbicide_rate_units3a_wet">oz (liquid)</label>
</div>
</td>
<td>
<div id="herbicide_rate_units3b">
<input type="radio" value="hectare" id="herbicide_rate_units3b_hectare" name="herbicide_rate_units3b"/><label for="herbicide_rate_units3b_hectare">per hectare</label>
<input type="radio" value="acre" id="herbicide_rate_units3b_acre" name="herbicide_rate_units3b" checked="checked"/><label for="herbicide_rate_units3b_acre">per acre</label>
</div>
</td></tr>
<tr><td>4.
<input type="text" name="herbicide_product4" id="herbicide_product4" />
</td><td>
<input type="text" name="herbicide_rate4" id="herbicide_rate4" size="5"/>
</td><td>
<div id="herbicide_rate_units4a">
<input type="radio" value="dry" id="herbicide_rate_units4a_dry" name="herbicide_rate_units4a"/><label for="herbicide_rate_units4a_dry">oz (dry)</label>
<input type="radio" value="wet" id="herbicide_rate_units4a_wet" name="herbicide_rate_units4a" checked="checked"/><label for="herbicide_rate_units4a_wet">oz (liquid)</label>
</div>
</td>
<td>
<div id="herbicide_rate_units4b">
<input type="radio" value="hectare" id="herbicide_rate_units4b_hectare" name="herbicide_rate_units4b"/><label for="herbicide_rate_units4b_hectare">per hectare</label>
<input type="radio" value="acre" id="herbicide_rate_units4b_acre" name="herbicide_rate_units4b" checked="checked"/><label for="herbicide_rate_units4b_acre">per acre</label>
</div>
</td></tr>
</table>
<br clear="all" />
<p><strong>If an adjuvant was applied, select the appropriate type:</strong>
<select id="herbicide_adjuvant">
<option value="invalid">Select from List</option>
<option value="na">Not Applicable
<option value="nis">Non-Ionic Surfactant (NIS)
<option value="cropoil">Crop Oil
<option value="other">Other
</select>
<p><strong>Target weeds</strong> (enter up to 10)
<table>
<tr><td>1.</td><td><input type="text" name="herbicide_target1" id="herbicide_target1" /></td>
<td>2.</td><td><input type="text" name="herbicide_target2" id="herbicide_target2" /></td></tr>
<tr><td>3.</td><td><input type="text" name="herbicide_target3" id="herbicide_target3" /></td>
<td>4.</td><td><input type="text" name="herbicide_target4" id="herbicide_target4" /></td></tr>
<tr><td>5.</td><td><input type="text" name="herbicide_target5" id="herbicide_target5" /></td>
<td>6.</td><td><input type="text" name="herbicide_target6" id="herbicide_target6" /></td></tr>
<tr><td>7.</td><td><input type="text" name="herbicide_target7" id="herbicide_target7" /></td>
<td>8.</td><td><input type="text" name="herbicide_target8" id="herbicide_target8" /></td></tr>
<tr><td>9.</td><td><input type="text" name="herbicide_target9" id="herbicide_target9" /></td>
<td>10.</td><td><input type="text" name="herbicide_target10" id="herbicide_target10" /></td></tr>
</table>
<p><strong>Developmental stage of crop e.g. V3</strong>
<br /><input type="text" name="herbicide_stage" id="herbicide_stage" maxlength="4" size="4" />
<p><strong>Justification for action.</strong> Note: This may include any measurements of pest abundance or relevant economic thresholds.
<textarea id="herbicide_justify" rows="4" cols="60"></textarea>
<p><strong>Reference.</strong> Note: This may include a discussion with an
IPM consultant (e.g., county or university extension specialists) or
published guideline (e.g., online IPM newsletter) used in the decision
making process that led to the use of a pest-management strategy (e.g.,
application of herbicide, insecticide, or fungicide).
<br /><textarea id="herbicide_reference" rows="6" cols="60"></textarea>
<p><strong>Any additional comments?</strong>
<textarea id="herbicide_comments" rows="6" cols="60"></textarea>
</div><!-- End herbicide_options -->
<div id="insecticide_options" style="display: none;">
<p>Note: If you <strong>tank-mixed</strong> an insecticide with a herbicide or fungicide, enter each separately under their respective categories.
<p><strong>Timing:</strong>
<select name="insecticide_timing" id="insecticide_timing">
<option value="invalid">Select from List</option>
<option value="seed_applied">Seed Applied</option>
<option value="in-furrow">In-furrow</option>
<option value="post_emerge">Post Emerge</option>
</select>
<p><strong>Method of application:</strong>
<select id="insecticide_method">
<option value="invalid">Select from List</option>
<option value="ground">Ground</option>
<option value="aerial">Aerial</option>
</select>
<p><strong>Application made to or for:</strong>
<select id="insecticide_crop">
<option value="invalid">Select from List</option>
<option value="corn">Corn</option>
<option value="soybean">Soybean</option>
<option value="rye">Rye</option>
<option value="wheat">Wheat</option>
<option value="alfalfa">Alfalfa</option>
<option value="other">Other</option>
</select>
<p>
<table>
<tr><th>Total liquid application rate: (optional)</th>
<td><input type="text" id="insecticide_total_rate" size="10" /></td>
<td>
<div id="insecticide_total_rate_units">
<input type="radio" value="gpa" id="insecticide_total_rate_units_gpa" name="insecticide_total_rate_units" checked="checked"/><label for="insecticide_total_rate_units_gpa">gallons per acre</label>
<input type="radio" value="lha" id="insecticide_total_rate_units_lha" name="insecticide_total_rate_units"/><label for="insecticide_total_rate_units_lha">L per hectare</label>
</div>
</td></tr>
<tr><th>Application Pressure: (optional)</th>
<td><input type="text" id="insecticide_pressure" size="10" /></td>
<td>
<div id="insecticide_pressure_units">
<input type="radio" value="psi" id="insecticide_pressure_units_psi" name="insecticide_pressure_units" checked="checked"/><label for="insecticide_pressure_units_psi">psi</label>
<input type="radio" value="kpa" id="insecticide_pressure_units_kpa" name="insecticide_pressure_units"/><label for="insecticide_pressure_units_kpa">kPa</label>
</div>
</td></tr>
</table>
<p>
<table>
<tr>
<th>Product Name Applied (example: Warrior)</th>
<th>Product Rate Applied</th>
<th>Rate Units</th>
<th></th>
</tr>
<tr><td><input type="text" name="insecticide_product1" id="insecticide_product1" />
</td><td>
<input type="text" name="insecticide_rate1" id="insecticide_rate1" size="5"/>
</td>
<td>
<div id="insecticide_rate_units1a">
<input type="radio" value="dry" id="insecticide_rate_units1a_dry" name="insecticide_rate_units1a"/><label for="insecticide_rate_units1a_dry">oz (dry)</label>
<input type="radio" value="wet" id="insecticide_rate_units1a_wet" name="insecticide_rate_units1a" checked="checked"/><label for="insecticide_rate_units1a_wet">oz (liquid)</label>
</div>
</td>
<td>
<div id="insecticide_rate_units1b">
<input type="radio" value="hectare" id="insecticide_rate_units1b_hectare" name="insecticide_rate_units1b"/><label for="insecticide_rate_units1b_hectare">per hectare</label>
<input type="radio" value="acre" id="insecticide_rate_units1b_acre" name="insecticide_rate_units1b" checked="checked"/><label for="insecticide_rate_units1b_acre">per acre</label>
</div>
</td></tr>
</table>
<br clear="all" />
<p><strong>If an adjuvant was applied, select the appropriate type:</strong>
<select id="insecticide_adjuvant">
<option value="invalid">Select from List</option>
<option value="na">Not Applicable
<option value="nis">Non-Ionic Surfactant (NIS)
<option value="cropoil">Crop Oil
<option value="other">Other
</select>
<p><strong>Target insects</strong> (enter up to 10)
<table>
<tr><td>1.</td><td><input type="text" name="insecticide_target1" id="insecticide_target1" /></td>
<td>2.</td><td><input type="text" name="insecticide_target2" id="insecticide_target2" /></td></tr>
<tr><td>3.</td><td><input type="text" name="insecticide_target3" id="insecticide_target3" /></td>
<td>4.</td><td><input type="text" name="insecticide_target4" id="insecticide_target4" /></td></tr>
<tr><td>5.</td><td><input type="text" name="insecticide_target5" id="insecticide_target5" /></td>
<td>6.</td><td><input type="text" name="insecticide_target6" id="insecticide_target6" /></td></tr>
<tr><td>7.</td><td><input type="text" name="insecticide_target7" id="insecticide_target7" /></td>
<td>8.</td><td><input type="text" name="insecticide_target8" id="insecticide_target8" /></td></tr>
<tr><td>9.</td><td><input type="text" name="insecticide_target9" id="insecticide_target9" /></td>
<td>10.</td><td><input type="text" name="insecticide_target10" id="insecticide_target10" /></td></tr>
</table>
<p><strong>Developmental stage of crop e.g. V3</strong>
<br /><input type="text" name="insecticide_stage" id="insecticide_stage" maxlength="4" size="4" />
<p><strong>Justification for action.</strong> Note: This may include any measurements of pest abundance or relevant economic thresholds.
<textarea id="insecticide_justify" rows="4" cols="60"></textarea>
<p><strong>Reference.</strong> Note: This may include a discussion with an
IPM consultant (e.g., county or university extension specialists) or
published guideline (e.g., online IPM newsletter) used in the decision
making process that led to the use of a pest-management strategy (e.g.,
application of herbicide, insecticide, or fungicide).
<br /><textarea id="insecticide_reference" rows="6" cols="60"></textarea>
<p><strong>Any additional comments?</strong>
<textarea id="insecticide_comments" rows="6" cols="60"></textarea>
</div><!-- End insecticide_options -->
<div id="fungicide_options" style="display: none;">
<p>Note: If you <strong>tank-mixed</strong> a fungicide with a herbicide or insecticide, enter each separately under their respective categories.
<p><strong>Timing:</strong>
<select name="fungicide_timing" id="fungicide_timing">
<option value="invalid">Select from List</option>
<option value="seed_applied">Seed Applied</option>
<option value="vegetative_application">Vegetative Application</option>
<option value="reproductive_application">Reproductive Application</option>
</select>
<p><strong>Method of application:</strong>
<select id="fungicide_method">
<option value="invalid">Select from List</option>
<option value="ground">Ground</option>
<option value="aerial">Aerial</option>
</select>