-
Notifications
You must be signed in to change notification settings - Fork 1
/
diagnosticTool.html
3108 lines (2528 loc) · 117 KB
/
diagnosticTool.html
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
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!-- jquery -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- bootstrap -->
<meta charset="UTF-8">
<!-- unicode -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- viewport -->
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<!-- sweetalert -->
</head>
<div class="fluid-container background">
<!--Header -->
<div class="fluid-container heading">
<h1> Autism Diagnostic Tool </h1>
</div>
<!--End Header -->
<div class="light-box fluid-container" id="section1">
<!-- Begin section 1 -->
<form class="form" action="">
<div class="row">
<div class="form-group col-md-6">
<label for="student-name"> Student Name: </label>
<input class="form-control" id="student-first-name" placeholder="First Name">
<label for="date1"> Date: </label>
<input class="form-control" id="date1" type="date">
</div>
<!-- END student-name form-group -->
<div class="form-group col-md-6">
<label for="respondent-name"> Respondent Name: </label>
<input class="form-control" id="respondent-name">
<label for="relationship-to-student"> Relationship: </label>
<input class="form-control" id="relationship-to-student">
</div>
<!-- END respondent-name form-group -->
</form>
<!-- END form -->
</div>
<!--END row -->
<button id="next1" class="btn btn-primary"> Next </button>
<h4> 1/7 </h4>
</div>
<!-- END section 1-->
<!-- Section 2 - RESTRICTED/REPETITIVE BEHAVIORS-->
<div class="light-box fluid-container" style="display:none" id="section2">
<h2> Restricted/Repetitive Behaviors </h2>
<h4> Please indicate on a scale of 0 to 3 how much like the individual the behavior is. </h4>
<h5 id="yeah2"> </h5>
<table class="table table-bordered">
<thead>
<tr>
<th> </th>
<!-- Number -->
<th>
<h2>Behavior</h2>
</th>
<th> 0: not at all like </th>
<th> 1: not much like </th>
<th> 2: somewhat like </th>
<th> 3: very much like </th>
</tr>
</thead>
<tbody>
<tr>
<th id="num1">1</th>
<th id="1">if left alone, the majority of the individuals time will be spent in repetitive or stereotyped Behaviors</th>
<th> <input type="radio" name="1" value="0" id="1-0"> 0 </br>
</th>
<th> <input type="radio" name="1" value="1" id="1-1"> 1 </br>
</th>
<th> <input type="radio" name="1" value="2" id="1-2"> 2 </br>
</th>
<th> <input type="radio" name="1" value="3" id="1-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num2">2</th>
<th id="2">is preoccupied with specific stimuli that are abnormal in intensity </th>
<th> <input type="radio" name="2" value="0" id="2-0"> 0 </br>
</th>
<th> <input type="radio" name="2" value="1" id="2-1"> 1 </br>
</th>
<th> <input type="radio" name="2" value="2" id="2-2"> 2 </br>
</th>
<th> <input type="radio" name="2" value="3" id="2-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num3">3</th>
<th id="3">stares at hands, objects or items in the environment for least 5 seconds</th>
<th> <input type="radio" name="3" value="0" id="3-0"> 0 </br>
</th>
<th> <input type="radio" name="3" value="1" id="3-1"> 1 </br>
</th>
<th> <input type="radio" name="3" value="2" id="3-2"> 2 </br>
</th>
<th> <input type="radio" name="3" value="3" id="3-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num4">4</th>
<th id="4">flicks fingers rapidly in front of eyes for periods of five seconds or more</th>
<th> <input type="radio" name="4" value="0" id="4-0"> 0 </br>
</th>
<th> <input type="radio" name="4" value="1" id="4-1"> 1 </br>
</th>
<th> <input type="radio" name="4" value="2" id="4-2"> 2 </br>
</th>
<th> <input type="radio" name="4" value="3" id="4-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num5">5</th>
<th id="5">makes rapid lunging, darting movements when moving from place to place</th>
<th> <input type="radio" name="5" value="0" id="5-0"> 0 </br>
</th>
<th> <input type="radio" name="5" value="1" id="5-1"> 1 </br>
</th>
<th> <input type="radio" name="5" value="2" id="5-2"> 2 </br>
</th>
<th> <input type="radio" name="5" value="3" id="5-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num6">6</th>
<th id="6">flaps hands or fingers in front of face or at sides</th>
<th> <input type="radio" name="6" value="0" id="6-0"> 0 </br>
</th>
<th> <input type="radio" name="6" value="1" id="6-1"> 1 </br>
</th>
<th> <input type="radio" name="6" value="2" id="6-2"> 2 </br>
</th>
<th> <input type="radio" name="6" value="3" id="6-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num7">7</th>
<th id="7">makes high pitch sounds or other vocalizations for self-stimulation</th>
<th> <input type="radio" name="7" value="0" id="7-0"> 0 </br>
</th>
<th> <input type="radio" name="7" value="1" id="7-1"> 1 </br>
</th>
<th> <input type="radio" name="7" value="2" id="7-2"> 2 </br>
</th>
<th> <input type="radio" name="7" value="3" id="7-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num8">8</th>
<th id="8">uses toys or objects inappropriately</th>
<th> <input type="radio" name="8" value="0" id="8-0"> 0 </br>
</th>
<th> <input type="radio" name="8" value="1" id="8-1"> 1 </br>
</th>
<th> <input type="radio" name="8" value="2" id="8-2"> 2 </br>
</th>
<th> <input type="radio" name="8" value="3" id="8-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num9">9</th>
<th id="9">does certain things repetitively, ritualistically</th>
<th> <input type="radio" name="9" value="0" id="9-0"> 0 </br>
</th>
<th> <input type="radio" name="9" value="1" id="9-1"> 1 </br>
</th>
<th> <input type="radio" name="9" value="2" id="9-2"> 2 </br>
</th>
<th> <input type="radio" name="9" value="3" id="9-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num10">10</th>
<th id="10">engages in stereotyped behaviors when playing with toys or objects</th>
<th> <input type="radio" name="10" value="0" id="10-0"> 0 </br>
</th>
<th> <input type="radio" name="10" value="1" id="10-1"> 1 </br>
</th>
<th> <input type="radio" name="10" value="2" id="10-2"> 2 </br>
</th>
<th> <input type="radio" name="10" value="3" id="10-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num11">11</th>
<th id="11">repeats unintelligible sounds (babbles) over and over</th>
<th> <input type="radio" name="11" value="0" id="11-0"> 0 </br>
</th>
<th> <input type="radio" name="11" value="1" id="11-1"> 1 </br>
</th>
<th> <input type="radio" name="11" value="2" id="11-2"> 2 </br>
</th>
<th> <input type="radio" name="11" value="3" id="11-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num12">12</th>
<th id="12">shows unusual interest in sensory aspects of play materials, body parts, or objects</th>
<th> <input type="radio" name="12" value="0" id="12-0"> 0 </br>
</th>
<th> <input type="radio" name="12" value="1" id="12-1"> 1 </br>
</th>
<th> <input type="radio" name="12" value="2" id="12-2"> 2 </br>
</th>
<th> <input type="radio" name="12" value="3" id="12-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num13">13</th>
<th id="13">displays ritualistic or compulsive behaviors</th>
<th> <input type="radio" name="13" value="0" id="13-0"> 0 </br>
</th>
<th> <input type="radio" name="13" value="1" id="13-1"> 1 </br>
</th>
<th> <input type="radio" name="13" value="2" id="13-2"> 2 </br>
</th>
<th> <input type="radio" name="13" value="3" id="13-3"> 3 </br>
</th>
</tr>
</tbody>
</table>
<!-- END table -->
<button id="next2" class="btn btn-primary"> Next </button>
<h4> 2/7 </h4>
</div>
<!-- END section 2 -->
<!-- Section 3 - Social Interaction-->
<div class="light-box fluid-container" style="display:none" id="section3">
<h2> Social Interaction </h2>
<h4> Please indicate on a scale of 0 to 3 how much like the individual the behavior is. </h4>
<h5 id="yeah3"></h5>
<table class="table table-bordered">
<thead>
<tr>
<th> </th>
<!-- Number -->
<th>
<h2>Behavior</h2>
</th>
<th> 0: not at all like </th>
<th> 1: not much like </th>
<th> 2: somewhat like </th>
<th> 3: very much like </th>
</tr>
</thead>
<tbody>
<tr>
<th id="num14">14</th>
<th id="14">does not initiate conversation with peers or others</th>
<th> <input type="radio" name="14" value="0" id="14-0"> 0 </br>
</th>
<th> <input type="radio" name="14" value="1" id="14-1"> 1 </br>
</th>
<th> <input type="radio" name="14" value="2" id="14-2"> 2 </br>
</th>
<th> <input type="radio" name="14" value="3" id="14-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num15">15</th>
<th id="15">pays little or no attention to what peers are doing</th>
<th> <input type="radio" name="15" value="0" id="15-0"> 0 </br>
</th>
<th> <input type="radio" name="15" value="1" id="15-1"> 1 </br>
</th>
<th> <input type="radio" name="15" value="2" id="15-2"> 2 </br>
</th>
<th> <input type="radio" name="15" value="3" id="15-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num16">16</th>
<th id="16">fails to imitate other people in games or learning activities</th>
<th> <input type="radio" name="16" value="0" id="16-0"> 0 </br>
</th>
<th> <input type="radio" name="16" value="1" id="16-1"> 1 </br>
</th>
<th> <input type="radio" name="16" value="2" id="16-2"> 2 </br>
</th>
<th> <input type="radio" name="16" value="3" id="16-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num17">17</th>
<th id="17">shows little or no interest in other people</th>
<th> <input type="radio" name="17" value="0" id="-0"> 0 </br>
</th>
<th> <input type="radio" name="17" value="1" id="-1"> 1 </br>
</th>
<th> <input type="radio" name="17" value="2" id="-2"> 2 </br>
</th>
<th> <input type="radio" name="17" value="3" id="-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num18">18</th>
<th id="18">doesn't follow other’s gestures to look at something</th>
<th> <input type="radio" name="18" value="0" id="18-0"> 0 </br>
</th>
<th> <input type="radio" name="18" value="1" id="18-1"> 1 </br>
</th>
<th> <input type="radio" name="18" value="2" id="18-2"> 2 </br>
</th>
<th> <input type="radio" name="18" value="3" id="18-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num19">19</th>
<th id="19">seems indifferent to others person's attention</th>
<th> <input type="radio" name="19" value="0" id="19-0"> 0 </br>
</th>
<th> <input type="radio" name="19" value="1" id="19-1"> 1 </br>
</th>
<th> <input type="radio" name="19" value="2" id="19-2"> 2 </br>
</th>
<th> <input type="radio" name="19" value="3" id="19-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num20">20</th>
<th id="20">shows minimal expressed pleasure when interacting with others</th>
<th> <input type="radio" name="20" value="0" id="20-0"> 0 </br>
</th>
<th> <input type="radio" name="20" value="1" id="20-1"> 1 </br>
</th>
<th> <input type="radio" name="20" value="2" id="20-2"> 2 </br>
</th>
<th> <input type="radio" name="20" value="3" id="20-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num21">21</th>
<th id="21">displays a little or no excitement in showing toys and objects to others</th>
<th> <input type="radio" name="21" value="0" id="21-0"> 0 </br>
</th>
<th> <input type="radio" name="21" value="1" id="21-1"> 1 </br>
</th>
<th> <input type="radio" name="21" value="2" id="21-2"> 2 </br>
</th>
<th> <input type="radio" name="21" value="3" id="21-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num22">22</th>
<th id="22">seems uninterested in pointing out things in the environment to others</th>
<th> <input type="radio" name="22" value="0" id="22-0"> 0 </br>
</th>
<th> <input type="radio" name="22" value="1" id="22-1"> 1 </br>
</th>
<th> <input type="radio" name="22" value="2" id="22-2"> 2 </br>
</th>
<th> <input type="radio" name="22" value="3" id="22-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num23">23</th>
<th id="23">seems unwilling or reluctant to get others to interact with him or her</th>
<th> <input type="radio" name="23" value="0" id="23-0"> 0 </br>
</th>
<th> <input type="radio" name="23" value="1" id="23-1"> 1 </br>
</th>
<th> <input type="radio" name="23" value="2" id="23-2"> 2 </br>
</th>
<th> <input type="radio" name="23" value="3" id="23-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num24">24</th>
<th id="24">shows minimal or no response when others attempt to interact with him or her</th>
<th> <input type="radio" name="24" value="0" id="24-0"> 0 </br>
</th>
<th> <input type="radio" name="24" value="1" id="24-1"> 1 </br>
</th>
<th> <input type="radio" name="24" value="2" id="24-2"> 2 </br>
</th>
<th> <input type="radio" name="24" value="3" id="24-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num25">25</th>
<th id="25">displays little or no reciprocal social communication</th>
<th> <input type="radio" name="25" value="0" id="25-0"> 0 </br>
</th>
<th> <input type="radio" name="25" value="1" id="25-1"> 1 </br>
</th>
<th> <input type="radio" name="25" value="2" id="25-2"> 2 </br>
</th>
<th> <input type="radio" name="25" value="3" id="25-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num26">26</th>
<th id="26">doesn't try to make friends with other people</th>
<th> <input type="radio" name="26" value="0" id="26-0"> 0 </br>
</th>
<th> <input type="radio" name="26" value="1" id="26-1"> 1 </br>
</th>
<th> <input type="radio" name="26" value="2" id="26-2"> 2 </br>
</th>
<th> <input type="radio" name="26" value="3" id="26-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num27">27</th>
<th id="27">fails to engage in creative, imaginative play</th>
<th> <input type="radio" name="27" value="0" id="27-0"> 0 </br>
</th>
<th> <input type="radio" name="27" value="1" id="27-1"> 1 </br>
</th>
<th> <input type="radio" name="27" value="2" id="27-2"> 2 </br>
</th>
<th> <input type="radio" name="27" value="3" id="27-3"> 3 </br>
</th>
</tr>
</tbody>
<!-- END table body -->
</table>
<!-- END table -->
<button id="next3" class="btn btn-primary"> Next </button>
<h4> 3/7 </h4>
</div>
<!-- END section 3 -->
<!-- Section 4 - SOCIAL COMMUNICATION-->
<div class="light-box fluid-container" style="display:none" id="section4">
<h2> Social Communication </h2>
<h4> Please indicate on a scale of 0 to 3 how much like the individual the behavior is. </h4>
<h5 id="yeah4"></h5>
<table class="table table-bordered">
<thead>
<tr>
<th> </th>
<!-- Number -->
<th>
<h2>Behavior</h2>
</th>
<th> 0: not at all like </th>
<th> 1: not much like </th>
<th> 2: somewhat like </th>
<th> 3: very much like </th>
</tr>
</thead>
<tbody>
<tr>
<th id="num28">28</th>
<th id="28">responds appropriately to humorous stimuli</th>
<th> <input type="radio" name="28" value="0" id="28-0"> 0 </br>
</th>
<th> <input type="radio" name="28" value="1" id="28-1"> 1 </br>
</th>
<th> <input type="radio" name="28" value="2" id="28-2"> 2 </br>
</th>
<th> <input type="radio" name="28" value="3" id="28-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num29">29</th>
<th id="29">has difficulty understanding jokes</th>
<th> <input type="radio" name="29" value="0" id="29-0"> 0 </br>
</th>
<th> <input type="radio" name="29" value="1" id="29-1"> 1 </br>
</th>
<th> <input type="radio" name="29" value="2" id="29-2"> 2 </br>
</th>
<th> <input type="radio" name="29" value="3" id="29-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num30">30</th>
<th id="30">has difficulty understanding slang expressions</th>
<th> <input type="radio" name="30" value="0" id="30-0"> 0 </br>
</th>
<th> <input type="radio" name="30" value="1" id="30-1"> 1 </br>
</th>
<th> <input type="radio" name="30" value="2" id="30-2"> 2 </br>
</th>
<th> <input type="radio" name="30" value="3" id="30-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num31">31</th>
<th id="31">has difficulty identifying when someone is teasing</th>
<th> <input type="radio" name="31" value="0" id="31-0"> 0 </br>
</th>
<th> <input type="radio" name="31" value="1" id="31-1"> 1 </br>
</th>
<th> <input type="radio" name="31" value="2" id="31-2"> 2 </br>
</th>
<th> <input type="radio" name="31" value="3" id="31-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num32">32</th>
<th id="32">has difficulty understanding when he or she is being ridiculed</th>
<th> <input type="radio" name="32" value="0" id="32-0"> 0 </br>
</th>
<th> <input type="radio" name="32" value="1" id="32-1"> 1 </br>
</th>
<th> <input type="radio" name="32" value="2" id="32-2"> 2 </br>
</th>
<th> <input type="radio" name="32" value="3" id="32-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num33">33</th>
<th id="33">has difficulty understanding what causes people to dislike him or her</th>
<th> <input type="radio" name="33" value="0" id="33-0"> 0 </br>
</th>
<th> <input type="radio" name="33" value="1" id="33-1"> 1 </br>
</th>
<th> <input type="radio" name="33" value="2" id="33-2"> 2 </br>
</th>
<th> <input type="radio" name="33" value="3" id="33-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num34">34</th>
<th id="34">fails to predict probable consequences and social events</th>
<th> <input type="radio" name="34" value="0" id="34-0"> 0 </br>
</th>
<th> <input type="radio" name="34" value="1" id="34-1"> 1 </br>
</th>
<th> <input type="radio" name="34" value="2" id="34-2"> 2 </br>
</th>
<th> <input type="radio" name="34" value="3" id="34-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num35">35</th>
<th id="35">doesn't seem to understand that people have thoughts and feelings different from his or hers</th>
<th> <input type="radio" name="35" value="0" id="35-0"> 0 </br>
</th>
<th> <input type="radio" name="35" value="1" id="35-1"> 1 </br>
</th>
<th> <input type="radio" name="35" value="2" id="35-2"> 2 </br>
</th>
<th> <input type="radio" name="35" value="3" id="35-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num36">36</th>
<th id="36">doesn't seem to understand that the other person doesn't know something</th>
<th> <input type="radio" name="36" value="0" id="36-0"> 0 </br>
</th>
<th> <input type="radio" name="36" value="1" id="36-1"> 1 </br>
</th>
<th> <input type="radio" name="36" value="2" id="36-2"> 2 </br>
</th>
<th> <input type="radio" name="36" value="3" id="36-3"> 3 </br>
</th>
</tr>
</tbody>
<!-- END table body -->
</table>
<!-- END table -->
<button id="next4" class="btn btn-primary"> Next </button>
<h4> 4/7 </h4>
</div>
<!-- END section 4 -->
<!-- Section 5 - Emotional Responses-->
<div class="light-box fluid-container" style="display:none" id="section5">
<h2> Emotional Responses </h2>
<h4> Please indicate on a scale of 0 to 3 how much like the individual the behavior is: </h4>
<h5 id="yeah5"></h5>
<table class="table table-bordered">
<thead>
<tr>
<th> </th>
<!-- Number -->
<th>
<h2>Behavior</h2>
</th>
<th> 0: not at all like </th>
<th> 1: not much like </th>
<th> 2: somewhat like </th>
<th> 3: very much like </th>
</tr>
</thead>
<tbody>
<tr>
<th id="num37">37</th>
<th id="37">needs an excessive amount of reassurance if things are changed or go wrong</th>
<th> <input type="radio" name="37" value="0" id="37-0"> 0 </br>
</th>
<th> <input type="radio" name="37" value="1" id="37-1"> 1 </br>
</th>
<th> <input type="radio" name="37" value="2" id="37-2"> 2 </br>
</th>
<th> <input type="radio" name="37" value="3" id="37-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num38">38</th>
<th id="38">becomes frustrated quickly when he or she cannot do something</th>
<th> <input type="radio" name="38" value="0" id="38-0"> 0 </br>
</th>
<th> <input type="radio" name="38" value="1" id="38-1"> 1 </br>
</th>
<th> <input type="radio" name="38" value="2" id="38-2"> 2 </br>
</th>
<th> <input type="radio" name="38" value="3" id="38-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num39">39</th>
<th id="39">temper tantrums when frustrated</th>
<th> <input type="radio" name="39" value="0" id="39-0"> 0 </br>
</th>
<th> <input type="radio" name="39" value="1" id="39-1"> 1 </br>
</th>
<th> <input type="radio" name="39" value="2" id="39-2"> 2 </br>
</th>
<th> <input type="radio" name="39" value="3" id="39-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num40">40</th>
<th id="40">becomes upset when routines are changed</th>
<th> <input type="radio" name="40" value="0" id="40-0"> 0 </br>
</th>
<th> <input type="radio" name="40" value="1" id="40-1"> 1 </br>
</th>
<th> <input type="radio" name="40" value="2" id="40-2"> 2 </br>
</th>
<th> <input type="radio" name="40" value="3" id="40-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num41">41</th>
<th id="41">responds negatively when given commands request or directions</th>
<th> <input type="radio" name="41" value="0" id="41-0"> 0 </br>
</th>
<th> <input type="radio" name="41" value="1" id="41-1"> 1 </br>
</th>
<th> <input type="radio" name="41" value="2" id="41-2"> 2 </br>
</th>
<th> <input type="radio" name="41" value="3" id="41-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num42">42</th>
<th id="42">has extreme reaction in response to loud, unexpected noise</th>
<th> <input type="radio" name="42" value="0" id="42-0"> 0 </br>
</th>
<th> <input type="radio" name="42" value="1" id="42-1"> 1 </br>
</th>
<th> <input type="radio" name="42" value="2" id="42-2"> 2 </br>
</th>
<th> <input type="radio" name="42" value="3" id="42-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num43">43</th>
<th id="43">temper tantrum when doesn't get his or her way</th>
<th> <input type="radio" name="43" value="0" id="43-0"> 0 </br>
</th>
<th> <input type="radio" name="43" value="1" id="43-1"> 1 </br>
</th>
<th> <input type="radio" name="43" value="2" id="43-2"> 2 </br>
</th>
<th> <input type="radio" name="43" value="3" id="43-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num44">44</th>
<th id="44">temper tantrums when told to stop doing something he or she enjoys doing</th>
<th> <input type="radio" name="44" value="0" id="44-0"> 0 </br>
</th>
<th> <input type="radio" name="44" value="1" id="44-1"> 1 </br>
</th>
<th> <input type="radio" name="44" value="2" id="44-2"> 2 </br>
</th>
<th> <input type="radio" name="44" value="3" id="44-3"> 3 </br>
</th>
</tr>
</tbody>
<!-- END table body -->
</table>
<!-- END table -->
<button id="next5" class="btn btn-primary"> Next </button>
<h4> 5/7 </h4>
</div>
<!-- END section 5 -->
<!-- Section 6 - Cognitive Style-->
<div class="light-box fluid-container" style="display:none" id="section6">
<h2> Cognitive Style </h2>
<h4> Please indicate on a scale of 0 to 3 how much like the individual the behavior is: </h4>
<h5 id="yeah6"></h5>
<table class="table table-bordered">
<thead>
<tr>
<th> </th>
<!-- Number -->
<th>
<h2>Behavior</h2>
</th>
<th> 0: not at all like </th>
<th> 1: not much like </th>
<th> 2: somewhat like </th>
<th> 3: very much like </th>
</tr>
</thead>
<tbody>
<tr>
<th id="num45">45</th>
<th id="45">uses exceptionally precise speech</th>
<th> <input type="radio" name="45" value="0" id="45-0"> 0 </br>
</th>
<th> <input type="radio" name="45" value="1" id="45-1"> 1 </br>
</th>
<th> <input type="radio" name="45" value="2" id="45-2"> 2 </br>
</th>
<th> <input type="radio" name="45" value="3" id="45-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num46">46</th>
<th id="46">attaches very concrete meanings to words</th>
<th> <input type="radio" name="46" value="0" id="46-0"> 0 </br>
</th>
<th> <input type="radio" name="46" value="1" id="46-1"> 1 </br>
</th>
<th> <input type="radio" name="46" value="2" id="46-2"> 2 </br>
</th>
<th> <input type="radio" name="46" value="3" id="46-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num47">47</th>
<th id="47">talks about a single subject excessively</th>
<th> <input type="radio" name="47" value="0" id="47-0"> 0 </br>
</th>
<th> <input type="radio" name="47" value="1" id="47-1"> 1 </br>
</th>
<th> <input type="radio" name="47" value="2" id="47-2"> 2 </br>
</th>
<th> <input type="radio" name="47" value="3" id="47-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num48">48</th>
<th id="48">makes naive remarks</th>
<th> <input type="radio" name="48" value="0" id="48-0"> 0 </br>
</th>
<th> <input type="radio" name="48" value="1" id="48-1"> 1 </br>
</th>
<th> <input type="radio" name="48" value="2" id="48-2"> 2 </br>
</th>
<th> <input type="radio" name="48" value="3" id="48-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num49">49</th>
<th id="49">displays superior knowledge or skill in specific subjects</th>
<th> <input type="radio" name="49" value="0" id="49-0"> 0 </br>
</th>
<th> <input type="radio" name="49" value="1" id="49-1"> 1 </br>
</th>
<th> <input type="radio" name="49" value="2" id="49-2"> 2 </br>
</th>
<th> <input type="radio" name="49" value="3" id="49-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num50">50</th>
<th id="50">displays excellent memory</th>
<th> <input type="radio" name="50" value="0" id="50-0"> 0 </br>
</th>
<th> <input type="radio" name="50" value="1" id="50-1"> 1 </br>
</th>
<th> <input type="radio" name="50" value="2" id="50-2"> 2 </br>
</th>
<th> <input type="radio" name="50" value="3" id="50-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num51">51</th>
<th id="51">shows an intense obsessive interest in specific intellectual subjects</th>
<th> <input type="radio" name="51" value="0" id="51-0"> 0 </br>
</th>
<th> <input type="radio" name="51" value="1" id="51-1"> 1 </br>
</th>
<th> <input type="radio" name="51" value="2" id="51-2"> 2 </br>
</th>
<th> <input type="radio" name="51" value="3" id="51-3"> 3 </br>
</th>
</tr>
</tbody>
<!-- END table body -->
</table>
<!-- END table -->
<button id="next6" class="btn btn-primary"> Next </button>
<h4> 6/7 </h4>
</div>
<!-- END section 6 -->
<!-- Section 7 - Maladaptive Speech-->
<div class="light-box fluid-container" style="display:none" id="section7">
<h2> Maladaptive Speech </h2>
<h4> Please indicate on a scale of 0 to 3 how much like the individual the behavior is: </h4>
<h5 id="yeah7"></h5>
<table class="table table-bordered">
<thead>
<tr>
<th> </th>
<!-- Number -->
<th>
<h2>Behavior</h2>
</th>
<th> 0: not at all like </th>
<th> 1: not much like </th>
<th> 2: somewhat like </th>
<th> 3: very much like </th>
</tr>
</thead>
<tbody>
<tr>
<th id="num52">52</th>
<th id="52">repeats words or phrases verbally or with signs</th>
<th> <input type="radio" name="52" value="0" id="52-0"> 0 </br>
</th>
<th> <input type="radio" name="52" value="1" id="52-1"> 1 </br>
</th>
<th> <input type="radio" name="52" value="2" id="52-2"> 2 </br>
</th>
<th> <input type="radio" name="52" value="3" id="52-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num53">53</th>
<th id="53">repeats words out of context</th>
<th> <input type="radio" name="53" value="0" id="53-0"> 0 </br>
</th>
<th> <input type="radio" name="53" value="1" id="53-1"> 1 </br>
</th>
<th> <input type="radio" name="53" value="2" id="53-2"> 2 </br>
</th>
<th> <input type="radio" name="53" value="3" id="53-3"> 3 </br>
</th>
</tr>
<tr>
<th id="num54">54</th>
<th id="54">speaks with flat tone, or affect</th>
<th> <input type="radio" name="54" value="0" id="54-0"> 0 </br>
</th>