-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMS-Soft tissue sarcoma.html
960 lines (867 loc) · 34.8 KB
/
MS-Soft tissue sarcoma.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Soft Tissue Tumors</title>
<link rel="stylesheet" type="text/css" href="view.css" media="all">
<script type="text/javascript" src="view.js"></script>
<script>
function updateDescription (frm)
{
var Template = "";
/*
if (frm.A01.value !== ""){
Template += "- Procedure: " + "\n" + frm.A01.value + "\n";
}
if (frm.A02.value !== ""){
Template += "- Tumor site: " + "\n" + frm.A02.value + "\n";
}
if (frm.A03.value !== ""){
Template += "- Tumor size: " + "\n" + frm.A03.value + "\n";
}
if (frm.A36.value !== ""){
Template += "- Tumor focality: " + "\n" + frm.A36.value + "\n";
}
*/
if (frm.A04.value !== ""){
Template += "- Tumor histology and immunohistochemical studies: " + "\n" + " - " + frm.A04.value + "\n";
}
if (frm.A08.value !== ""){
Template += "\n" + "- Histologic grade (FNCLCC grading) : " + frm.A08.value + "\n";
}
if (frm.A05.value !== ""){
Template += " - Histologic type: " + frm.A05.value + "\n";
}
if (frm.A06.value !== ""){
Template += " - Mitotic rate: " + frm.A06.value + "\n";
}
if (frm.A07.value !== ""){
Template += " - Tumor necrosis: " + frm.A07.value + "\n";
}
if (frm.A33.value !== ""){
Template += " - Treatment effect:" + frm.A33.value + "\n";
}
if (frm.A09.value !== ""){
Template += "- Lymphovascular invasion: " + frm.A09.value + "\n";
}
if (frm.A10.value !== ""){
Template += "- Perineural invasion: " + frm.A10.value + "\n";
}
if (frm.A11.value !== ""){
Template += "\n" + "- Surgical margin: " + frm.A11.value + "\n";
}
if (frm.A12.value + frm.A13.value + frm.A14.value + frm.A15.value + frm.A16.value !== ""){
Template += "\n" + "- Regional lymph nodes: " + "\n";
}
if (frm.A12.value !== ""){
Template += " - Number of regional lymph nodes examined: " + frm.A12.value + "\n";
}
if (frm.A13.value !== ""){
Template += " - Number of lymph nodes involved: " + frm.A13.value + "\n";
}
if (frm.A14.value !== ""){
Template += " - Extracapsular spread: " + frm.A14.value + "\n";
}
if (frm.A15.value !== ""){
Template += " - Size of largest metastatic deposit (mm), specify site: " + frm.A15.value + "\n";
}
if (frm.A16.value !== ""){
Template += " - Size of largest lymph node involved (mm), specify site: " + frm.A16.value + "\n";
}
if (document.getElementById("A37").checked || document.getElementById("A38").checked ||
document.getElementById("A39").checked || document.getElementById("A40").checked ||
document.getElementById("A41").checked || document.getElementById("A42").checked ){
Template += "\n" + "- Distant metastasis:" + "\n";
}
if (document.getElementById("A37").checked){
Template += frm.A37.value + "\n";
}
if (document.getElementById("A38").checked){
Template += frm.A38.value + "\n";
}
if (document.getElementById("A39").checked){
Template += frm.A39.value + "\n";
}
if (document.getElementById("A40").checked){
Template += frm.A40.value + "\n";
}
if (document.getElementById("A41").checked){
Template += frm.A41.value + "\n";
}
if (document.getElementById("A42").checked){
Template += frm.A42.value + "\n";
}
if (document.getElementById("A17").checked || document.getElementById("A18").checked || document.getElementById("A19").checked || frm.A20.value + frm.A21.value + frm.A22.value + frm.A23.value + frm.A24.value + frm.A25.value + frm.A26.value !== ""){
Template += "\n" + "- Pathologic stage classification (pTNM, AJCC 8th edition):" + "\n";
}
if (document.getElementById("A17").checked || document.getElementById("A18").checked || document.getElementById("A19").checked){
Template += " - TNM Descriptors:" + "\n";
}
if (document.getElementById("A17").checked){
Template += " " + frm.A17.value + "\n";
}
if (document.getElementById("A18").checked){
Template += " " + frm.A18.value + "\n";
}
if (document.getElementById("A19").checked){
Template += " " +frm.A19.value + "\n";
}
if (frm.A20.value !== ""){
Template += " - Primary tumor (pT) (Head and neck): " + "\n" + frm.A20.value + "\n";
}
if (frm.A21.value !== ""){
Template += " - Primary tumor (pT) (Trunk and extremities): " + "\n" + frm.A21.value + "\n";
}
if (frm.A22.value !== ""){
Template += " - Primary tumor (pT) (Abdomen and thoracic visceral organs): " + "\n" + frm.A22.value + "\n";
}
if (frm.A23.value !== ""){
Template += " - Primary tumor (pT) (Retroperitoneum): " + "\n" + frm.A23.value + "\n";
}
if (frm.A24.value !== ""){
Template += " - Primary tumor (pT) (Orbit): " + "\n" + frm.A24.value + "\n";
}
if (frm.A25.value !== ""){
Template += " - Regional lymph nodes (pN): " + "\n" + frm.A25.value + "\n";
}
if (frm.A26.value !== ""){
Template += " - Distant metastasis: " + "\n" + frm.A26.value + "\n";
}
if (document.getElementById("A28").checked || document.getElementById("A29").checked || document.getElementById("A30").checked || document.getElementById("A31").checked || document.getElementById("A32").checked || frm.A33.value + frm.A34.value !==""){
Template += "\n" + "- Additional pathologic findings: " + "\n";
}
if (document.getElementById("A28").checked || document.getElementById("A29").checked || document.getElementById("A30").checked || document.getElementById("A31").checked || document.getElementById("A32").checked){
Template += " - Preresection treatment: " + "\n";
}
if (document.getElementById("A28").checked){
Template += frm.A28.value + "\n";
}
if (document.getElementById("A29").checked){
Template += frm.A29.value + "\n";
}
if (document.getElementById("A30").checked){
Template += frm.A30.value + "\n";
}
if (document.getElementById("A31").checked){
Template += frm.A31.value + "\n";
}
if (document.getElementById("A32").checked){
Template += frm.A32.value + "\n";
}
if (frm.A34.value !== ""){
Template += " - Other (specify): " + frm.A34.value + "\n";
}
if (frm.A35.value !== ""){
Template += "\n" + "- Additional notes: " + "\n" + " - " + frm.A35.value + "\n";
}
frm.holdtext.value = Template;
}
function CopyToClipboard() {
/* Get the text field */
var copyText = document.getElementById("holdtext");
/* Select the text field */
copyText.select();
/* Copy the text inside the text field */
document.execCommand("copy");
/* Alert the copied text */
alert("Report copied to clipboard");
}
</script>
<style>
table, th, td {
border: 1px solid silver;
border-collapse: collapse;
padding: 4px;
}
</style>
</head>
<body>
<img id="top" src="top.png" alt="">
<div id="form_container">
<div class="form_description">
<h2><a href=".\cap\Cancer-Protocols-2024-06-Update\Bone & Soft Tissue Protocol Folder\Soft.Tissue_4.2.0.0.REL_CAPCP.pdf" target="_blank">
<div class="tooltip">
Soft tissue tumors
<span class="tooltiptext">click to access explanations in the original CAP template</span>
</div>
<a></h2>
</div>
<form>
<p> This is additional protocol for <a href=".\cap\Cancer-Protocols-2024-06-Update\Bone & Soft Tissue Protocol Folder\Soft.Tissue.Bx_4.2.0.0.REL_CAPCP.pdf" target="_blank">biopsy specimen of soft tissue tumors</a>.</p>
<!--
<p>
<fieldset style="border-color:#e6e6ff;">
<legend><label class="description">Gross descriptions:</label></legend>
<p>
<table border="1">
<col width="40%">
<tr>
<td>
<label class="description">- Procedure:</label>
</td>
<td>
<select class="element select large" ID="A01">
<option value=""></option>
<option value=" - Intralesional resection">Intralesional resection</option>
<option value=" - Marginal resection">Marginal resectiony</option>
<option value=" - Wide resection">Wide resection</option>
<option value=" - Radical resection">Radical resection</option>
<option value=" - Other (specify):">Other (specify):</option>
<option value=" - Not specified">Not specified</option>
</select>
</td>
</tr>
<p>
<fieldset style="border-color:#e6e6ff;">
<legend><label class="description">Gross descriptions:</label></legend>
<p>
<table border="1">
<col width="40%">
<tr>
<td>
<label class="description">- Tumor site:</label>
</td>
<td>
<select class="element select large" ID="A02">
<option value=""></option>
<option value=" - Head and neck (specify site, if known):">Head and neck (specify site, if known):</option>
<option value=" - Trunk and extremities (specify site, if known):">Trunk and extremities (specify site, if known):</option>
<option value=" - Abdominal visceral organs (specify site, if known):">Abdominal visceral organs (specify site, if known):</option>
<option value=" - Thoracic visceral organs (specify site, if known):">Thoracic visceral organs (specify site, if known):</option>
<option value=" - Retroperitoneum (specify, if known):">Retroperitoneum (specify, if known):</option>
<option value=" - Not specified">Not specified</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- Tumor size:</label>
</td>
<td>
<select class="element select large" ID="A03">
<option value=""></option>
<option value=" - Greatest dimension (mm): ">Greatest dimension (mm): </option>
<option value=" - All dimensions (mm x mm x mm): ">All dimensions (mm x mm x mm):</option>
<option value=" - Cannot be determined (explain): ">Cannot be determined (explain):</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- Tumor focality:</label>
</td>
<td>
<select class="element select large" ID="A36">
<option value=""></option>
<option value=" - Unifocal">Unifocal</option>
<option value=" - Multi-focal (number, sizes)">Multi-focal (number, sizes)</option>
<option value=" - Cannot be determined (explain): ">Cannot be determined (explain):</option>
</select>
</td>
</tr>
</table>
</p>
</fieldset>
</p>
-->
<p>
<fieldset style="border-color:#e6e6ff;">
<legend><label class="description">Microscopic descriptions:</label></legend>
<p><label class="description">- Tumor histology and immunohistochemical studies: </label>
<textarea ID="A04" name="A04" class="element textarea medium"></textarea>
</p>
<p>
<table border="1">
<col width="35%">
<tr>
<td>
Adipocytic Tumors
</td>
<td>
Atypical spindle cell / pleomorphic lipomatous tumor<br>
Atypical lipomatous tumor<br>
Well-differentiated liposarcoma<br>
Dedifferentiated liposarcoma<br>
Myxoid liposarcoma (+% hypercellular area)<br>
Pleomorphic liposarcoma, NOS<br>
Epithelioid pleomorphic liposarcoma<br>
Myxoid pleomorphic liposarcoma
</td>
</tr>
<tr>
<td>
Fibroblastic / myofibroblastic / fibrohistiocytic tumors
</td>
<td>
Solitary fibrous tumor <br>
Desmoid-type fibromatosis<br>
Lipofibromatosis<br>
Adult fibrosarcoma<br>
Plexiform fibrohistiocytic tumor<br>
Giant cell fibroblastoma<br>
Dermatofibrosarcoma protuberans<br>
Fibrosarcomatous dermatofibrosarcoma protuberansa<br>
Myxofibrosarcoma<br>
Low-grade fibromyxoid sarcoma<br>
Sclerosing epithelioid fibrosarcoma<br>
Myofibroblastic sarcoma<br>
Superficial CD34-positive fibroblastic tumor<br>
Myxoinflammatory fibroblastic sarcoma
</td>
</tr>
<tr>
<td>
Histiocytic / giant cell rich tumors
</td>
<td>
Giant cell tumor of soft tissue<br>
Langerhans cell sarcoma<br>
True histiocytic sarcoma<br>
Malignant tenosynovial giant cell tumor<br>
Dendritic reticulum cell sarcoma<br>
Interdigitating reticulum cell sarcoma<br>
Fibroblastic reticulum cell sarcoma<br>
</td>
</tr>
<tr>
<td>
Tyrosine kinase fusion tumors, RAS-MAP pathway
</td>
<td>
NTRK 1/2/3 fusion tumor<br>
BRAF fusion tumor<br>
RET fusion tumor<br>
RAF fusion tumor<br>
ALK fusion tumor, NOS<br>
Inflammatory myofibroblastic tumor<br>
Epithelioid inflammatory myofibroblastic sarcoma<br>
Infantile fibrosarcoma
</td>
</tr>
<tr>
<td>
Pericytic / myopericytic tumors
</td>
<td>
Glomus tumor, atypical / uncertain biologic potential<br>
Glomus tumor, malignant<br>
</td>
</tr>
<tr>
<td>
Vascular tumors
</td>
<td>
Kaposiform hemangioendothelioma<br>
Papillary intralymphatic angioendothelioma<br>
Retiform hemangioendothelioma<br>
Composite hemangioendothelioma<br>
Pseudomyogenic hemangioendothelioma<br>
Kaposi sarcoma<br>
Epithelioid hemangioendothelioma with WWTR1::CAMTA1 fusion<br>
Epithelioid hemangioendothelioma with YAP1::TFE3 fusion<br>
Epithelioid hemangioendothelioma, NOS<br>
Epithelioid angiosarcoma<br>
Radiation-associated angiosarcoma<br>
Lymphedema-associated angiosarcoma<br>
Angiosarcoma, NOS
</td>
</tr>
<tr>
<td>
Smooth Muscle Tumors
</td>
<td>
EBV-associated smooth muscle tumor<br>
Leiomyosarcoma
</td>
</tr>
<tr>
<td>
Skeletal Muscle Tumors
</td>
<td>
Embryonal rhabdomyosarcoma <br>
Alveolar rhabdomyosarcoma <br>
Pleomorphic rhabdomyosarcoma<br>
Spindle cell / sclerosing rhabdomyosarcoma NOS<br>
Congenital spindle cell rhabdomyosarcoma with VGLL2/NCOA2/CITED2 rearrangements<br>
Spindle cell / sclerosing rhabdomyosarcoma with MYOD1 mutation
MYOD1-mutant spindle cell / sclerosing rhabdomyosarcoma<br>
Spindle cell rhabdomyosarcoma with FUS/EWSR1::TFCP2 or MEIS1::NCOA2 rearrangements<br>
Ectomesenchymoma
</td>
</tr>
</tr>
<tr>
<td>
Peripheral nerve sheath tumors
</td>
<td>
Malignant peripheral nerve sheath tumor, NOS<br>
Epithelioid malignant peripheral nerve sheath tumor<br>
Malignant triton tumor<br>
Melanotic malignant peripheral nerve sheath tumor<br>
Malignant granular cell tumor<br>
Malignant perineurioma
</td>
</tr>
<tr>
<td>
Chondro-osseous Tumors
</td>
<td>
Extraskeletal osteosarcoma<br>
Mesenchymal chondrosarcoma<br>
Chondrosarcoma arising in synovial chondromatosis
</td>
</tr>
<tr>
<td>
Tumors of uncertain differentiation / additional round and spindle cell tumors
</td>
<td>
Hemosiderotic fibrolipomatous tumor<br>
Pleomorphic hyalinizing angiectatic tumor<br>
Atypical fibroxanthoma<br>
Pleomorphic dermal sarcoma<br>
Angiomatoid fibrous histiocytoma<br>
Myoepithelioma <br>
Mixed tumor, malignant <br>
Myoepithelial carcinoma<br>
Ossifying fibromyxoid tumor<br>
Phosphaturic mesenchymal tumor, malignant<br>
Synovial sarcoma<br>
Epithelioid sarcoma, distal classic type<br>
Epithelioid sarcoma, proximal large cell type<br>
Alveolar soft part sarcoma<br>
Clear cell sarcoma of soft tissue<br>
Extraskeletal myxoid chondrosarcoma<br>
Desmoplastic small round cell tumor (DSRCT) <br>
Round cell sarcoma with EWSR1::non ETS fusions<br>
CIC-rearranged sarcoma<br>
Sarcoma with BCOR genetic alterations<br>
PEComa, NOS<br>
PEComa, TSC2 mutated<br>
PEComa, TFE3 rearranged<br>
Intimal sarcoma<br>
</td>
</tr>
<tr>
<td>
Extrarenal rhabdoid tumor
</td>
</tr>
<tr>
<td>
Undifferentiated sarcomas
</td>
<td>
Undifferentiated pleomorphic sarcoma<br>
Undifferentiated sarcoma NOS
</td>
</tr>
</table>
</p>
<p>
<table border="1">
<col width="40%">
<tr>
<td valign="top" rowspan="4">
<label class="description">- <a href=".\cap\Cancer-Protocols-2024-06-Update\Bone & Soft Tissue Protocol Folder\Soft.Tissue_4.2.0.0.REL_CAPCP.pdf#page=23" target="_blank">Histologic grade (FNCLCC grading)</a>:</label>
(mitoic counts adjusted to 22 mm eyepiece, 40x objective)
</td>
<td>
<select class="element select large" ID="A08">
<option value=""></option>
<option value="Grade 1 (score 2 or 3, low grade)">Grade 1 (score 2 or 3, low grade)</option>
<option value="Grade 2 (score 4 or 5, high grade)">Grade 2 (score 4 or 5, high grade)</option>
<option value="Grade 3 (score 6 to 8, high grade)">Grade 3 (score 6 to 8, high grade)</option>
</select>
</td>
</tr>
<tr>
<td align="right">
<label>- <a href=".\cap\Cancer-Protocols-2024-06-Update\Bone & Soft Tissue Protocol Folder\Soft.Tissue_4.2.0.0.REL_CAPCP.pdf#page=24" target="_blank">Histologic type</a>:</label>
<select class="element select medium" ID="A05">
<option value=""></option>
<option value="Well-differentiatedliposarcoma (score 1)">Well-differentiated liposarcoma (score 1)</option>
<option value="Well-differentiated leiomyosarcoma (score 1)">Well-differentiated leiomyosarcoma (score 1)</option>
<option value="Malignant neurofibroma (score 1)">Malignant neurofibroma (score 1)</option>
<option value="Well-differentiated fibrosarcoma (score 1)">Well-differentiated fibrosarcoma (score 1)</option>
<option value="Myxoid liposarcoma (score 2)">Myxoid liposarcoma (score 2)</option>
<option value="Conventional leiomyosarcoma (score 2)">Conventional leiomyosarcoma (score 2)</option>
<option value="Conventional MPNST (score 2)">Conventional MPNST (score 2)</option>
<option value="Conventional fibrosarcoma (score 2)">Conventional fibrosarcoma (score 2)</option>
<option value="Myxofibrosarcoma (score 2)">Myxofibrosarcoma (score 2)</option>
<option value="Myxoid chondrosarcoma (score 2)">Myxoid chondrosarcoma (score 2)</option>
<option value="Conventional angiosarcoma (score 2)">Conventional angiosarcoma (score 2)</option>
<option value="High-grade myxoid (round cell) liposarcoma (score 3)">High-grade myxoid (round cell) liposarcoma (score 3)</option>
<option value="Pleomorphic liposarcoma (score 3)">Pleomorphic liposarcoma (score 3)</option>
<option value="Dedifferentiated liposarcoma (score 3)">Dedifferentiated liposarcoma (score 3)</option>
<option value="Rhabdomyosarcoma (score 3)">Rhabdomyosarcoma (score 3)</option>
<option value="Poorly differentiated/pleomorphic leiomyosarcoma (score 3)">Poorly differentiated/pleomorphic leiomyosarcoma (score 3)</option>
<option value="Poorly differentiated/epithelioid angiosarcoma (score 3)">Poorly differentiated/epithelioid angiosarcoma (score 3)</option>
<option value="Poorly differentiated MPNST (score 3)">Poorly differentiated MPNST (score 3)</option>
<option value="Malignant Triton tumor (score 3)">Malignant Triton tumor (score 3)</option>
<option value="Synovial sarcoma (score 3)">Synovial sarcoma (score 3)</option>
<option value="Mesenchymal chondrosarcoma (score 3)">Mesenchymal chondrosarcoma (score 3)</option>
<option value="Extraskeletal osteosarcoma (score 3)">Extraskeletal osteosarcoma (score 3)</option>
<option value="Extraskeletal Ewing sarcoma (score 3)">Extraskeletal Ewing sarcoma (score 3)</option>
<option value="Malignant rhabdoid tumor (score 3)">Malignant rhabdoid tumor (score 3)</option>
<option value="Clear cell sarcoma (score 3)">Clear cell sarcoma (score 3)</option>
<option value="Epithelioid sarcoma (score 3)">Epithelioid sarcoma (score 3)</option>
<option value="Alveolar soft part sarcoma (score 3)">Alveolar soft part sarcoma (score 3)</option>
<option value="Undifferentiated (spindlecell and pleomorphic) sarcoma (score 3)">Undifferentiated (spindlecell and pleomorphic) sarcoma (score 3)</option>
<option value="Other (specify): ">Other (specify): </option>
</select>
</td>
</tr>
<tr>
<td align="right">
<label>- <a href=".\cap\Cancer-Protocols-2024-06-Update\Bone & Soft Tissue Protocol Folder\Soft.Tissue_4.2.0.0.REL_CAPCP.pdf#page=24" target="_blank">Mitotic rate</a> :</label>
<select class="element select medium" ID="A06"> <option value=""></option>
<option value=""></option>
<option value="(Score 1) < 14 mitoses per 10 HPF, specify:">(Score 1) < 14 mitoses per 10 HPF, specify:</option>
<option value="(Score 2) 14 to 28 mitoses per 10 HPF, specify:">(Score 2) 14 to 28 mitoses per 10 HPF, specify:</option>
<option value="(Score 3) > 28 mitoses per 10 HPF, specify:">(Score 3) > 28 mitoses per 10 HPF, specify:</option>
<option value="(Score 1) 0-5/1 mm2">(Score 1) 0-5/1 mm2</option>
<option value="(Score 2) 6-11/1 mm2">(Score 2) 6-11/1 mm2</option>
<option value="(Score 3) >11/1 mm2">(Score 3) >11/1 mm2</option>
</select>
</td>
</tr>
<tr>
<td align="right">
<label>- Tumor necrosis:</label>
<select class="element select medium" ID="A07">
<option value=""></option>
<option value="(Score 0) No tumor necrosis"> No tumor necrosis (score 0)</option>
<option value="(Score 1) < 50% tumor necrosis"> < 50% tumor necrosis (score 1)</option>
<option value="(Score 2) > or = 50% tumor necrosis"> > or = 50% tumor necrosis (score 2)</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- <a href=".\cap\Cancer-Protocols-2021-06-Update\Bone-and-Soft-Tissue-Protocol-Folder\Soft.Tissue_4.1.0.0.REL_CAPCP.pdf#page=18" target="_blank">Treatment effect</a>:</label>
</td>
<td>
<select class="element select large" ID="A33">
<option value=""></option>
<option value="No known presurgical therapy">No known presurgical therapy</option>
<option value="Not identified">Not identified</option>
<option value="Present, specify percentage of viable tumor:">Present, specify percentage of viable tumor:</option>
<option value="Cannot be determined">Cannot be determined</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- Lymphatic and / or Vascular Invasion: </label>
</td>
<td>
<select class="element select large" ID="A09">
<option value=""></option>
<option value="Not identified">Not identified</option>
<option value="Present">Present</option>
<option value="Cannot be determined">Cannot be determined</option>
</select>
</td>
</tr>
<tr>
<td>
<label class=""> + Perineural invasion: </label>
</td>
<td>
<select class="element select large" ID="A10">
<option value=""></option>
<option value="Not identified">Not identified</option>
<option value="Present">Present</option>
<option value="Cannot be determined">Cannot be determined</option>
</select>
</td>
</tr>
</table>
</p>
</fieldset>
</p>
<p>
<fieldset style="border-color:#e6e6ff;">
<legend><label class="description">Surgical margins: </label></legend>
<p><label class="description">- Surgical margin:</label>
<select class="element select medium" ID="A11">
<option value=""></option>
<option value="Cannot be assessed">Cannot be assessed</option>
<option value="Uninvolved by tumor, specify: , closest distance: and those margins <2 cm:">Uninvolved by tumor, specify: , closest distance: ,and those margins <2 cm:</option>
<option value="Involved by tumor, specify:">Involved by tumor, specify:</option>
</select>
</p>
<br>
</fieldset>
</p>
<p>
<fieldset style="border-color:#e6e6ff;">
<legend> <label class="description"> Regional lymph nodes: </label></legend>
<p>
<table border="1">
<col width="75%">
<tr>
<td>
<label class="description">- Number of regional lymph nodes examined:</label>
</td>
<td>
<input type="text" class="element text large" name="A12" ID="A12" size="10">
</td>
</tr>
<tr>
<td>
<label class="description">- Number of lymph nodes involved:</label>
</td>
<td>
<input type="text" class="element text large" name="A13" ID="A13" size="10">
</td>
</tr>
<tr>
<td>
<label class="description">- Extracapsular spread:</label>
</td>
<td>
<select class="element select large" ID="A14">
<option value=""></option>
<option value="Not identified">Not identified</option>
<option value="Present">Present</option>
<option value="Cannot be determined">Cannot be determined</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- Size of largest metastatic deposit (mm), specify site:</label>
</td>
<td>
<input type="text" class="element text large" ID="A15" size="20">
</td>
</tr>
<tr>
<td>
<label class="description">- Size of largest lymph node involved (mm), specify site:</label>
</td>
<td>
<input type="text" class="element text large" ID="A16" size="20">
</td>
</tr>
</table>
</p>
</fieldset>
</p>
<p>
<fieldset style="border-color:#e6e6ff;">
<legend> <label class="description"> Distant Metastasis: </label></legend>
<input class="element checkbox" type="checkbox" id="A37" value=" - Not applicable"><label class="choice" >Not applicable</label>
<input class="element checkbox" type="checkbox" id="A38" value=" - Not identified"><label class="choice" >Not identified</label>
<input class="element checkbox" type="checkbox" id="A39" value=" - Non-regional lymph node(s) (specify):"><label class="choice" >Non-regional lymph node(s) (specify):</label>
<input class="element checkbox" type="checkbox" id="A40" value=" - Lung (specify):"><label class="choice" >Lung (specify):</label>
<input class="element checkbox" type="checkbox" id="A41" value=" - Other (specify):"><label class="choice" >Other (specify):</label>
<input class="element checkbox" type="checkbox" id="A42" value=" - Cannot be determined: "><label class="choice" >Cannot be determined: </label>
</fieldset>
</p>
<p>
<fieldset style="border-color:#e6e6ff;">
<legend> <label class="description"> <a href=".\cap\Cancer-Protocols-2021-06-Update\Bone-and-Soft-Tissue-Protocol-Folder\Soft.Tissue_4.1.0.0.REL_CAPCP.pdf#page=19" target="_blank">Pathologic stage classification (AJCC 8e)</a>:</label></legend>
<p>
<table border="1">
<col width="60%">
<tr>
<td valign="top">
<label class="description">- TNM Descriptors:</label>
</td>
<td>
<input class="element checkbox" type="checkbox" id="A17" value="m (multiple primary tumors) "><label class="choice">m (multiple primary tumors)</label>
<input class="element checkbox" type="checkbox" id="A18" value="r (recurrent) "><label class="choice">r (recurrent)</label>
<input class="element checkbox" type="checkbox" id="A19" value="y (post treatment) "><label class="choice">y (post treatment)</label>
</td>
</tr>
<tr>
<td>
<label class="description">- Primary tumor (pT) (Head and neck):</label>
</td>
<td>
<select class="element select large" ID="A20">
<option value=""></option>
<option value=" - pTX: Primary tumor cannot be assessed">pTX: Primary tumor cannot be assessed</option>
<option value=" - pT1: Tumor < or = 2 cm">pT1: Tumor < or = 2 cm</option>
<option value=" - pT2: Tumor > 2 to < or = 4 cm">pT2: Tumor > 2 to < or = 4 cm</option>
<option value=" - pT3: Tumor > 4 cm">pT3: Tumor > 4 cm</option>
<option value=" - pT4: Tumor with invasion of adjoining structures">pT4: Tumor > 4 cm</option>
<option value=" - pT4a: Tumor with orbital invasion, skull base/dural invasion, invasion of central compartment viscera, involvement of facial skeleton, or invasion of pterygoid muscles">pT4a: Tumor with orbital invasion, skull base/dural invasion, invasion of central compartment viscera, involvement of facial skeleton, or invasion of pterygoid muscles</option>
<option value=" - pT4b:Tumor with brain parenchymal invasion, carotid artery encasement, prevertebral muscle invasion, or central nervous system involvement via perineural spread">pT4b: Tumor with brain parenchymal invasion, carotid artery encasement, prevertebral muscle invasion, or central nervous system involvement via perineural spread</option>
<option value=" - pT4 (subcategory cannot be determined)">pT4 (subcategory cannot be determined)</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- Primary tumor (pT) (Trunk and extremities):</label>
</td>
<td>
<select class="element select large" ID="A21">
<option value=""></option>
<option value=" - pT not assigned (cannot be determined based on available pathological information)">pT not assigned (cannot be determined based on available pathological information)</option>
<option value=" - pT0: No evidence of primary tumor">pT0: No evidence of primary tumor</option>
<option value=" - pT1: Tumor < or = 5 cm">pT1: Tumor < or = 5 cm</option>
<option value=" - pT2: Tumor > 5 to < or = 10 cm">pT2: Tumor > 5 to < or = 10 cm</option>
<option value=" - pT3: Tumor > 10 to < or = 15 cm">pT3: Tumor > 10 to < or = 15 cm</option>
<option value=" - pT4: Tumor > 15 cm ">pT4: Tumor > 15 cm</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- Primary tumor (pT) (Abdo and thorax visceral organs):</label>
</td>
<td>
<select class="element select large" ID="A22">
<option value=""></option>
<option value=" - pT not assigned (cannot be determined based on available pathological information)">pT not assigned (cannot be determined based on available pathological information)</option>
<option value=" - pT1: Organ confined">pT1: Organ confined</option>
<option value=" - pT2: Tumor extension into tissue beyond organ">pT2: Tumor extension into tissue beyond organ</option>
<option value=" - pT2a: Invades serosa or visceral peritoneum">pT2a: Invades serosa or visceral peritoneum</option>
<option value=" - pT2b: Extension beyond serosa (mesentery)">pT2b: Extension beyond serosa (mesentery)</option>
<option value=" - pT2 (subcategory cannot be determined)">pT2 (subcategory cannot be determined)</option>
<option value=" - pT3: Invades another organ">pT3: Invades another organ</option>
<option value=" - pT4: Multifocal involvement">pT4: Multifocal involvement</option>
<option value=" - pT4a: Multifocal (2 sites)">pT4a: Multifocal (2 sites)</option>
<option value=" - pT4b: Multifocal (3-5 sites)">pT4b: Multifocal (3-5 sites)</option>
<option value=" - pT4c: Multifocal (>5 sites)">pT4c: Multifocal (>5 sites)</option>
<option value=" - pT4 (subcategory cannot be determined)">pT4 (subcategory cannot be determined)</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- Primary tumor (pT) (Retroperitoneum):</label>
</td>
<td>
<select class="element select large" ID="A23">
<option value=""></option>
<option value=" - pT not assigned (cannot be determined based on available pathological information)">pT not assigned (cannot be determined based on available pathological information)</option>
<option value=" - pT0: No evidence of primary tumor">pT0: No evidence of primary tumor</option>
<option value=" - pT1: Tumor < or = 5 cm">pT1: Tumor < or = 5 cm</option>
<option value=" - pT2: Tumor > 5 to < or = 10 cm">pT2: Tumor > 5 to < or = 10 cm</option>
<option value=" - pT3: Tumor > 10 to < or = 15 cm">pT3: Tumor > 10 to < or = 15 cm</option>
<option value=" - pT4: Tumor > 15 cm ">pT4: Tumor > 15 cm</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- Primary tumor (pT) (Orbit):</label>
</td>
<td>
<select class="element select large" ID="A24">
<option value=""></option>
<option value=" - pT not assigned (cannot be determined based on available pathological information)">pT not assigned (cannot be determined based on available pathological information)</option>
<option value=" - pT0: No evidence of primary tumor">pT0: No evidence of primary tumor</option>
<option value=" - pT1: Tumor < or = 2 cm">pT1: Tumor < or = 2 cm</option>
<option value=" - pT2: Tumor >2 cm in greatest dimension without invasion of bony walls or globe">pT2: Tumor >2 cm in greatest dimension without invasion of bony walls or globe</option>
<option value=" - pT3: Tumor of any size with invasion of bony walls">pT3: Tumor of any size with invasion of bony walls</option>
<option value=" - pT4: Tumor of any size with invasion of globe or periorbital structures, including eyelid, conjunctiva, temporal fossa, nasal cavity, paranasal sinuses, and/or central nervous system ">pT4: Tumor of any size with invasion of globe or periorbital structures, including eyelid, conjunctiva, temporal fossa, nasal cavity, paranasal sinuses, and/or central nervous system</option>
</select>
</td>
</tr>
<tr>
<td>
<label class="description">- Regional lymph nodes (pN):</label>
</td>
<td>
<select class="element select large" ID="A25">
<option value=""></option>
<option value=" - pN not assigned (no nodes submitted or found)"> pN not assigned (no nodes submitted or found)</option>
<option value=" - pN not assigned (cannot be determined based on available pathological information)"> pN not assigned (cannot be determined based on available pathological information)</option>
<option value=" - pN0: No regional lymph node metastasis">pN0: No regional lymph node metastasis</option>
<option value=" - pN1: Regional lymph node metastasis">pN1: Regional lymph node metastasis</option>
</select>
</td>
</tr>
<tr>
<td >
<label class="description">- Distant metastasis (pM):</label>
</td>
<td>
<select class="element select large" ID="A26">
<option value=""></option>
<option value=" - Not applicable - pM cannot be determined from the submitted specimen(s)">Not applicable - pM cannot be determined from the submitted specimen(s)</option>
<option value=" - pM1: Distant metastasis">pM1:Distant metastasis</option>
</select>
</td>
</tr>
<!--
<tr>
<td>
- Specify site(s), if known:
<input type="text" class="element text small" ID="A27" size="35">
</td>
</tr>
-->
</table>
</p>
</fieldset>
</p>
<p>
<fieldset style="border-color:#e6e6ff;">
<legend> <label class="description"> Additional pathologic findings: </label></legend>
<p>
<table border="1">
<col width="55%">
<tr>
<td valign="top">
+ Preresection treatment:
</td>
<td>
<input class="element checkbox" type="checkbox" id="A28" value=" - No known preresection therapy"><label class="choice">No known preresection therapy</label>
<input class="element checkbox" type="checkbox" id="A29" value=" - Chemotherapy performed"><label class="choice">Chemotherapy performed</label>
<input class="element checkbox" type="checkbox" id="A30" value=" - Radiation therapy performed"><label class="choice">Radiation therapy performed</label>
<input class="element checkbox" type="checkbox" id="A31" value=" - Therapy performed, type not specified"><label class="choice">Therapy performed, type not specified</label>
<input class="element checkbox" type="checkbox" id="A32" value=" - Not specified"><label class="choice">Not specified</label>
</td>
</tr>
<tr>
<td>
+ Other (specify):
</td>
<td>
<input type="text" class="element text large" ID="A34" size="35">
</td>
</tr>
</table>
</p>
</fieldset>
</p>
<p>
<label class="description">- Additional notes:</label>
<textarea ID="A35" class = "element textarea medium" style="border-color:grey;"></textarea>
</p>
<br><br>
<input type="button" name="copyform" value="Check your Report" onclick="updateDescription(this.form)"/>
<br>
<TEXTAREA ID="holdtext" name="holdtext" class="textarea large" style="border-color:coral;"></TEXTAREA>
<br><br>
<!-- The button used to copy the text -->
<button onclick="CopyToClipboard()">Copy text to Clipboard</button>
<input type="reset" value="Reset Form" name="reset" style="float: right;">
</form>
<br>
<br>
<div id="footer">
Last upated on 14-Aug-2024,<br>
based on <a href="https://www.cap.org/protocols-and-guidelines/cancer-reporting-tools/cancer-protocol-templates" target="_blank">US CAP cancer protocol templates</a>.<br>
Soft Tissue Resection 4.2.0.0 (June 2024).<br>
html form was created on <a href="https://www.phpform.org">pForm</a>, <a href="https://www.w3schools.com/">W3 School</a>, <a href="https://stackoverflow.com/">StackOverflow</a>, and <a href="https://icons8.com">Icons8</a>.<br><br>
Anatomical Pathology Division, Queen Mary Hospital, Hong Kong.
</div>
</div>
<img id="bottom" src="bottom.png" alt="">
</body>
</html>