-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS3115.xsl
6245 lines (6093 loc) · 313 KB
/
IRS3115.xsl
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"?>
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp " ">]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS3115Style.xsl"/>
<xsl:output method="html" indent="yes" encoding="iso-8859-1"/>
<xsl:strip-space elements="*" />
<xsl:param name="Form3115Data" select="$RtnDoc/IRS3115" />
<xsl:template match="/">
<html>
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form3115Data)">
</xsl:with-param></xsl:call-template>
</title>
<!-- No Browser Caching -->
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<!-- No Proxy Caching -->
<meta http-equiv="Cache-Control" content="private"/>
<meta name="Description" content="Form 3115"/>
<meta name="Generator" content="IBM WebSphere Studio"/>
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"></script>
<xsl:call-template name="InitJS"></xsl:call-template>
<style type="text/css">
<xsl:if test="not($Print) or $Print=''">
<xsl:call-template name="IRS3115Style"></xsl:call-template>
<xsl:call-template name="AddOnStyle"></xsl:call-template>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form style="font-family:arial; font-size:9pt" name="Form3115">
<xsl:call-template name="DocumentHeader"></xsl:call-template>
<div class="styTBB" style="width:187mm">
<div style="float:left; width:31mm; font-size:7pt">
Form
<span class="styFormNumber">3115</span>
<!--<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3115Data"/>
</xsl:call-template>-->
<div>(Rev. December 2009)
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3115Data"/>
</xsl:call-template>
</div>
<div style="font-size:6pt">
Department of the Treasury<br/>Internal Revenue Service
</div>
</div>
<div class="styMainTitle" style="float:left; border-left:1 solid black; border-right:1 solid black; width:125mm; height:17.5mm; text-align:center; padding-top:7mm;">
Application for Change in Accounting Method
</div>
<div style="float:left; font-size:7pt; width:31mm; padding-top:8mm; text-align:center">
OMB No. 1545-0152
</div>
</div>
<div class="styBB" style="width:187mm; font-size:8pt">
<div style="float:left; width:108mm; height:16mm; border-right:1 solid black">
Name of filer (name of parent corporation if a consolidated group) (see instructions)
<div style="padding-left:5mm; padding-top:1mm">
<xsl:call-template name="PopulateReturnHeaderFiler"><xsl:with-param name="TargetNode">BusinessNameLine1</xsl:with-param></xsl:call-template><br/>
<xsl:call-template name="PopulateReturnHeaderFiler"><xsl:with-param name="TargetNode">BusinessNameLine2</xsl:with-param></xsl:call-template>
</div>
</div>
<div style="float:left; padding-left:2mm; height:8mm">
<b>Identification number (see instructions)</b>
<div style="text-align:left; width:100%; font-size: 8pt">
<!-- If SSN exists -->
<xsl:if test="not($Form3115Data/ShareholderSSN='' or not($Form3115Data/SSN))">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$Form3115Data/SSN"/>
</xsl:call-template>
</xsl:if>
<!-- Else if EIN exists -->
<xsl:if test="not($Form3115Data/ShareholderEIN='' or not($Form3115Data/EIN))">
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="$Form3115Data/EIN"/>
</xsl:call-template>
</xsl:if>
<!--New- Else reason for no EIN/SSN -->
<xsl:if test="not($Form3115Data/MissingSSNEINReason='' or not($Form3115Data/MissingSSNEINReason))">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/MissingSSNEINReason"/>
</xsl:call-template>
</xsl:if>
<!--
Old Code
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">
EIN
</xsl:with-param>
</xsl:call-template>
-->
</div>
</div>
<div style="float:left; padding-left:2mm; border-top:1 solid black">
Principal business activity code number (see instructions)
<div style="text-align:left; width:100%; font-size: 8pt">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/PrincipalBusinessActivityCode"/>
</xsl:call-template>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/InactivePrincipalBusActyCode"/>
</xsl:call-template>
</div>
</div>
</div>
<div class="styBB" style="width:187mm">
<div style="float:left; font-size:8pt; width:108mm; height:10mm; border-right:1 solid black">
Number, street, and room or suite no. If a P.O. box, see the instructions.
<div style="padding-left:5mm; line-height:100%; font-size: 8pt">
<xsl:call-template name="PopulateReturnHeaderFiler"><xsl:with-param name="TargetNode">AddressLine1</xsl:with-param></xsl:call-template><br />
<xsl:call-template name="PopulateReturnHeaderFiler"><xsl:with-param name="TargetNode">AddressLine2</xsl:with-param></xsl:call-template>
</div>
</div>
<div style="float:left; font-size:8pt; padding-left:2mm; height:5mm">
<span style="float:left">
Tax year of change begins (MM/DD/YYYY)
</span>
<span style="float:right; margin-right:2mm; font-size:8pt">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="$Form3115Data/TaxYearBeginning"/>
</xsl:call-template>
</span>
</div>
<div style="float:left; font-size:8pt; padding-left:2mm; border-top:1 solid black; width:79mm; height: 5mm">
<span style="float:left">
Tax year of change ends (MM/DD/YYYY)
</span>
<span style="float:right; margin-right:2mm; font-size:8pt">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="$Form3115Data/TaxYearEnding"/>
</xsl:call-template>
</span>
</div>
</div>
<div class="styBB" style="width:187mm">
<div style="float:left; font-size:8pt; width:108mm; height:10mm; border-right:1 solid black">
City or town, state, and ZIP code
<div style="padding-left:5mm; line-height:100%">
<xsl:call-template name="PopulateReturnHeaderFiler"><xsl:with-param name="TargetNode">CityStateInfo</xsl:with-param></xsl:call-template>
<br />
<xsl:call-template name="PopulateReturnHeaderFiler"><xsl:with-param name="TargetNode">Country</xsl:with-param></xsl:call-template>
</div>
</div>
<div style="float:left; font-size:8pt; padding-left:2mm; height:10mm">
Name of contact person (see instructions)
<div style=" padding-top:1mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/NameOfPersonToContact"/>
</xsl:call-template>
</div>
</div>
</div>
<div class="styBB" style="width:187mm">
<div style="float:left; font-size:8pt; width:139mm; height:10mm; border-right:1 solid black">
Name of applicant(s) (if different than filer) and identification number(s) <span style="font-size:7pt">(see instructions)</span>
<div style="padding-left:5mm; line-height:100%; float:left">
<xsl:choose>
<xsl:when test="normalize-space($Form3115Data/BusinessName) != ''">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/BusinessName/BusinessNameLine1"/>
</xsl:call-template>
<xsl:if test="normalize-space($Form3115Data/BusinessName/BusinessNameLine2) != ''">
<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/BusinessName/BusinessNameLine2"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/PersonName"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</div>
<div style="float:right; padding-right:1mm">
<xsl:if test="($Form3115Data/SSN) or ($Form3115Data/EIN)">
I.D. No.:
</xsl:if>
<xsl:for-each select="$Form3115Data/SSN">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="."/>
</xsl:call-template>
<xsl:if test="position()!=last()">, </xsl:if>
</xsl:for-each>
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="$Form3115Data/EIN"/>
</xsl:call-template>
</div>
</div>
<div style="float:left; font-size:8pt; padding-left:2mm; height:10mm">
Contact person's telephone number
<div style="padding-top:1mm">
<xsl:call-template name="PopulatePhoneNumber">
<xsl:with-param name="TargetNode" select="$Form3115Data/ContactPersonPhoneNumber"/>
</xsl:call-template>
</div>
</div>
</div>
<div class="styBB" style="width:187mm; height:4mm">
<span style="float:left">
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsMemberOfConsolidatedGroup"/>
<xsl:with-param name="BackupName">Is Member Of Consolidated Group</xsl:with-param>
</xsl:call-template>
If the applicant is a member of a consolidated group, check this box
</label>
</span>
<span style="float:right; margin-right:15mm">
<span class="styDotLn" style="padding-right:5mm">
..............
<img src="{$ImagePath}/3115_Bullet.gif" alt="Right Arrow Bullet"/>
</span>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsMemberOfConsolidatedGroup" />
</xsl:call-template>
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsMemberOfConsolidatedGroup"/>
<xsl:with-param name="BackupName">Is Member Of Consolidated Group</xsl:with-param>
</xsl:call-template>
</input>
</span>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsMemberOfConsolidatedGroup"/>
</xsl:call-template>
</span>
</div>
<!-- ************************************************************************************ -->
<div style="width:187mm">If <b>Form 2848</b>, Power of Attorney and Declaration of Representative, is attached (see instructions for when Form 2848 is required), </div>
<!-- ************************************************************************************ -->
<div class="styBB" style="width:187mm; height:4mm">
<span style="float:left">
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form3115Data/HasApplicantAttachedForm2848" />
<xsl:with-param name="BackupName">Has Applicant Attached Form2848</xsl:with-param>
</xsl:call-template> check this box
</label>
</span>
<span style="float:right; margin-right:16mm">
<span class="styDotLn" style="padding-right:5mm">
.............................
<img src="{$ImagePath}/3115_Bullet.gif" alt="Right Arrow Bullet"/>
</span>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form3115Data/HasApplicantAttachedForm2848" />
</xsl:call-template>
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/HasApplicantAttachedForm2848"/>
<xsl:with-param name="BackupName">Has Applicant Attached Form2848</xsl:with-param>
</xsl:call-template>
</input>
</span>
</span>
</div>
<!-- ************************************************************************************ -->
<div class="styBB" style="width:187mm">
<div style="float:left; width:108mm; border-right:1 solid black; padding-bottom:0.5mm">
<b>Check the box to indicate the applicant.</b>
<div style="float:left; width:59mm; margin-top:2mm">
<div style="width:100%">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Individual"/>
<xsl:with-param name="BackupName">Who Is Filing Form/Individual</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Individual" />
<xsl:with-param name="BackupName">Who Is Filing Form/Individual</xsl:with-param>
</xsl:call-template>
Individual
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Corporation"/>
<xsl:with-param name="BackupName">Who Is Filing FormCorporation</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Corporation" />
<xsl:with-param name="BackupName">Who Is Filing FormCorporation</xsl:with-param>
</xsl:call-template>
Corporation
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/ControlledForeignCorporation"/>
<xsl:with-param name="BackupName">Controlled Foreign Corporation</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/ControlledForeignCorporation" />
<xsl:with-param name="BackupName">Controlled Foreign Corporation</xsl:with-param>
</xsl:call-template>
Controlled foreign corporation<br/>(Sec. 957)
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Corporation1050"/>
<xsl:with-param name="BackupName">Corporation1050</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel"><xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Corporation1050" />
<xsl:with-param name="BackupName">Corporation1050</xsl:with-param>
</xsl:call-template>
10/50 corporation (Sec. 904(d)(2)(E))
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/QualifiedPersonalServiceCorp"/>
<xsl:with-param name="BackupName">Qualified Personal Service Corp</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/QualifiedPersonalServiceCorp" />
<xsl:with-param name="BackupName">Qualified Personal Service Corp</xsl:with-param>
</xsl:call-template>
Qualified personal service<br/>corporation (Sec. 448(d)(2))
</label>
</div>
</div>
</div>
<div style="float:left; margin-top:2mm">
<div style="width:100%">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Cooperative"/>
<xsl:with-param name="BackupName">Cooperative</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Cooperative" />
<xsl:with-param name="BackupName">Cooperative</xsl:with-param>
</xsl:call-template>
Cooperative (Sec. 1381)
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Partnership"/>
<xsl:with-param name="BackupName">Partnership</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Partnership" />
<xsl:with-param name="BackupName">Partnership</xsl:with-param>
</xsl:call-template>
Partnership
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/SCorporation"/>
<xsl:with-param name="BackupName">SCorporation</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/SCorporation" />
<xsl:with-param name="BackupName">SCorporation</xsl:with-param>
</xsl:call-template>
S corporation
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/InsuranceCompanySect816a"/>
<xsl:with-param name="BackupName">Insurance Company Sect816a</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/InsuranceCompanySect816a" />
<xsl:with-param name="BackupName">Insurance Company Sect816a</xsl:with-param>
</xsl:call-template>
Insurance co. (Sec. 816(a))
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/InsuranceCompanySect831"/>
<xsl:with-param name="BackupName">Insurance Company Sect831</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/InsuranceCompanySect831" />
<xsl:with-param name="BackupName">Insurance Company Sect831</xsl:with-param>
</xsl:call-template>
Insurance co. (Sec. 831)
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div style="float:left">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Other"/>
<xsl:with-param name="BackupName">WhoIsFilingForm/Other</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Other" />
<xsl:with-param name="BackupName">WhoIsFilingForm/Other</xsl:with-param>
</xsl:call-template>
Other (specify) <img src="{$ImagePath}/3115_Bullet.gif" alt="Right Arrow Bullet"/>
</label>
<span style="border-bottom:1 solid black; width:18mm;font-size:8pt;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/Other/@description"/>
</xsl:call-template>
</span>
</div>
</div>
</div>
<br/>
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/ExemptOrganization"/>
<xsl:with-param name="BackupName">Exempt Organization</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/ExemptOrganization" />
<xsl:with-param name="BackupName">Exempt Organization</xsl:with-param>
</xsl:call-template>
Exempt organization. Enter Code section <img src="{$ImagePath}/3115_Bullet.gif" alt="Right Arrow Bullet"/>
</label>
</div>
<div class="stySmallText" style="float:left; margin-top:1mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/WhoIsFilingForm/ExemptOrganization/@codeSection"/>
</xsl:call-template>
</div>
</div>
<div style="float:left; padding-left:2mm">
<b>Check the appropriate box to indicate the type<br/>of accounting method change being requested.</b><br/>(see instructions)
<div style="margin-top:3.5mm">
<div style="width:100%">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/TypeOfAccountingMethod/DepreciationOrAmortization"/>
<xsl:with-param name="BackupName">DepreciationOrAmortization</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/TypeOfAccountingMethod/DepreciationOrAmortization" />
<xsl:with-param name="BackupName">DepreciationOrAmortization</xsl:with-param>
</xsl:call-template>
Depreciation or Amortization
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/TypeOfAccountingMethod/FinancialProductsAndActivities"/>
<xsl:with-param name="BackupName">Financial Products And Activities</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/TypeOfAccountingMethod/FinancialProductsAndActivities" />
<xsl:with-param name="BackupName">Financial Products And Activities</xsl:with-param>
</xsl:call-template>
Financial Products and/or Financial Activities of<br/>Financial Institutions
</label>
</div>
</div>
<div style="margin-top:0.5mm">
<div class="styIRS3115ChxBoxDiv">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/TypeOfAccountingMethod/Other"/>
<xsl:with-param name="BackupName">TypeOfAccountingMethod/Other</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:left">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/TypeOfAccountingMethod/Other" />
<xsl:with-param name="BackupName">TypeOfAccountingMethod/Other</xsl:with-param>
</xsl:call-template>
Other (specify) <img src="{$ImagePath}/3115_Bullet.gif" alt="Right Arrow Bullet"/>
</label>
</div>
<div style="border-bottom:1 solid black; width:47mm; float:right">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/TypeOfAccountingMethod/Other/@description"/>
</xsl:call-template>
</div>
</div>
</div>
</div>
</div>
<div class="styBB" style="width:187mm; font-size:8.5pt; padding-top:0.5mm; padding-bottom:0.5mm">
<b>Caution:</b> <i>To be eligible for approval of the requested change in method of accounting, the taxpayer must provide all information that is relevant to the taxpayer
or to the taxpayer's requested change in method of accounting. This includes all information requested on this Form 3115 (including its instructions), as
well as any other information that is not specifically requested.</i><br/>
<b>The taxpayer must attach all applicable supplemental statements requested throughout this form.</b>
</div>
<!-- BEGIN Part I Title -->
<div class="styBB" style="width:187mm; ">
<div class="styPartName" style="width:11mm; height:4.2mm; font-size:9.5pt">Part I</div>
<div class="styPartDesc" style="width:150mm; font-size:9.5pt">
Information For Automatic Change Request
</div>
<div style="float:right">
<div class="styIRS3115YesBox" style="border-bottom:0; height:4.2mm; font-size:9pt"><b>Yes</b></div>
<div class="styIRS3115NoBox" style="border-bottom:0; height:4.2mm; font-size:9pt"><b>No</b></div>
</div>
</div>
<!-- END Part I Title -->
<!-- BEGIN Part I Line Items -->
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox" style="text-align:center">1</div>
<div style="float:left">
Enter the applicable designated automatic accounting method change number for the requested automatic change.<br/>
Enter only one designated automatic accounting method change number, except as provided for in guidance<br/>published by the IRS. If the requested change has no designated automatic accounting method change number,<br/>check “Other,” and provide both a description of the change and citation of the IRS guidance providing the automatic <br/>
change. See instructions. <br/>
<div style="padding-top:1mm">
<img src="{$ImagePath}/3115_Bullet.gif" alt="Right Arrow Bullet"/>
<span style="font-size:8pt">(a) Change No.</span>
<span style="border-bottom:1 solid black; width:4mm; text-align:center">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/DesignatedAcctMthdChangeNumber" />
</xsl:call-template>
</span>
<span style="font-size:8pt"> (b) Other </span>
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3115Data/OtherAccountingMethod"/>
<xsl:with-param name="BackupName">Other Accounting Method</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form3115Data/OtherAccountingMethod" />
<xsl:with-param name="BackupName">Other Accounting Method</xsl:with-param>
</xsl:call-template>
<span style="font-size:8pt"> Description </span><img src="{$ImagePath}/3115_Bullet.gif" alt="Right Arrow Bullet"/>
</label>
<span style="border-bottom:1 solid black; width:102mm; font-size:7pt">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/OtherAccountingMethod/@description" />
</xsl:call-template>
</span>
</div>
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox" style="height:26mm"></div>
<div class="styIRS3115DimNoBox" style="height:26mm"></div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox" style="text-align:center">2</div>
<div style="float:left">
Do any of the scope limitations described in section 4.02 of Rev. Proc. 2008-52 cause automatic consent to be
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox"></div>
<div class="styIRS3115DimNoBox"></div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox"></div>
<div style="float:left">
unavailable for the applicant's requested change? If “Yes,” attach an explanation
</div>
<div style="float:right">
<span class="styDotLn" style="padding-right:4mm">
...........
</span>
<div class="styIRS3115YesBox">
<xsl:call-template name="PopulateYesBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/ScopeLmtCsAutoCnsntUnavailable"/>
</xsl:call-template>
</div>
<div class="styIRS3115NoBox">
<xsl:call-template name="PopulateNoBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/ScopeLmtCsAutoCnsntUnavailable"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="width:187mm">
<div style="float:left">
<!-- <b>Note.</b> Complete Part II below and then Part IV, and also Schedules A through E of this form (if applicable).-->
</div>
<div style="float:left">
<span><b>Note:</b> <i> Complete Part II below and then Part IV, and also Schedules A through E of this form (if applicable).</i></span>
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox"></div>
<div class="styIRS3115DimNoBox"></div>
</div>
</div>
<!-- BEGIN Part II Title -->
<div class="styBB" style="width:187mm; border-top:1 solid black">
<div class="styPartName" style="width:12mm; height:4.2mm; font-size:9.5pt">Part II</div>
<div class="styPartDesc" style="width:150mm; font-size:9.5pt">
Information For All Requests
</div>
<div style="float:right">
<div class="styIRS3115YesBox" style="border-bottom:0; height:4.2mm; font-size:9pt"><b>Yes</b></div>
<div class="styIRS3115NoBox" style="border-bottom:0; height:4.2mm; font-size:9pt"><b>No</b></div>
</div>
</div>
<!-- END Part II Title -->
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox" style="text-align:center">3</div>
<div style="float:left">
Did or will the applicant cease to engage in the trade or business to which the requested change relates, or
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox"></div>
<div class="styIRS3115DimNoBox"></div>
</div>
</div>
<!-- ******************************************************************************* -->
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox"></div>
<div style="float:left">
terminate its existence, in the tax year of change (see instructions)?
</div>
<div style="float:right">
<span class="styDotLn" style="padding-right:0mm">
.................
</span>
<div class="styIRS3115YesBox">
<xsl:call-template name="PopulateYesBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/ApplcntCsTradeBusReqChgRelates"/>
</xsl:call-template>
</div>
<div class="styIRS3115NoBox">
<xsl:call-template name="PopulateNoBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/ApplcntCsTradeBusReqChgRelates"/>
</xsl:call-template>
</div>
</div>
</div>
<!-- ******************************************************************************* -->
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox"></div>
<div style="float:left">
If “Yes,” the applicant is not eligible to make the change under automatic change request procedures.
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox"></div>
<div class="styIRS3115DimNoBox"></div>
</div>
</div>
<div style="width:187mm;">
<div style="float:right">
<div class="styIRS3115DimYesBox"></div>
<div class="styIRS3115DimNoBox"></div>
</div>
</div>
<!-- END Part I Line Items -->
<!-- BEGIN Part II Line Items -->
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox" style="text-align:center">4a</div>
<div style="float:left">
Does the applicant (or any present or former consolidated group in which the applicant was a member during
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox" style="border-bottom:1 solid black"></div>
<div class="styIRS3115DimNoBox" style="border-bottom:1 solid black"></div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox"></div>
<div style="float:left">
the applicable tax year(s)) have any Federal income tax return(s) under examination (see instructions)?
</div>
<div style="float:right">
<span class="styDotLn" style="padding-right:0mm">
...
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">
Any Federal Returns Under Examination Repeating Group
</xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form3115Data/ReturnsUnderExaminationInfo"/>
</xsl:call-template>
</span>
<div class="styIRS3115YesBox">
<xsl:call-template name="PopulateYesBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsAnyFederalReturnsUnderExam"/>
</xsl:call-template>
</div>
<div class="styIRS3115NoBox">
<xsl:call-template name="PopulateNoBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsAnyFederalReturnsUnderExam"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox"></div>
<div style="float:left">
If “ No,” go to line 5.
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox"></div>
<div class="styIRS3115DimNoBox"></div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftLtrBox">b</div>
<div style="float:left">
Is the method of accounting the applicant is requesting to change an issue (with respect to either the applicant<br/>or any present or former consolidated group in which the applicant was a member during the applicable tax
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox" style="height:8mm"></div>
<div class="styIRS3115DimNoBox" style="height:8mm"></div>
</div>
</div>
<div style="width:187mm; border-bottom:1 solid black">
<div class="styIRS3115LNLeftNumBox"></div>
<div style="float:left">
year(s)) either (i) under consideration or (ii) placed in suspense (see instructions)?
</div>
<div style="float:right">
<span class="styDotLn" style="padding-right:0mm">
.........
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">
Method of Change Issue Under Consideration or Placed in Suspense Repeating Group
</xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form3115Data/ConsiderationOrSuspenseInfo"/>
</xsl:call-template>
</span>
<div class="styIRS3115YesBox" style="border-bottom:0">
<xsl:call-template name="PopulateYesBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsMethodOfChangeIssueSuspense"/>
</xsl:call-template>
</div>
<div class="styIRS3115NoBox" style="border-bottom:0">
<xsl:call-template name="PopulateNoBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsMethodOfChangeIssueSuspense"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="width:187.5mm; text-align:center; font-size:7pt">
<b style="font-size:10pt; padding-top:1mm; padding-bottom:1mm">Signature</b> <i style="font-size:10pt">(see instructions)</i>
<div style="font-size:7pt; font-weight:bold; text-align: justify;">
Under penalties of perjury, I declare that I have examined this application, including accompanying schedules and statements, and to the best of my<br/>knowledge and belief, the application contains all the relevant facts relating to the application, and it is true, correct, and complete. Declaration of preparer<br/>(other than applicant) is based on all information of which preparer has any knowledge.
</div>
<div style="width:187mm">
<div style="float:left; width:90mm; text-align:center">
<b style="font-size:9pt">Filer</b>
<div style="border-bottom:1 solid black; width:100%; height:7mm">
<xsl:call-template name="PopulateReturnHeaderOfficer">
<xsl:with-param name="TargetNode">TaxpayerPIN</xsl:with-param>
</xsl:call-template>
<span style="width:9mm"></span>
<xsl:call-template name="PopulateReturnHeaderOfficer">
<xsl:with-param name="TargetNode">DateSigned</xsl:with-param>
</xsl:call-template>
</div>
<b>Signature and date</b>
<div style="border-bottom:1 solid black; width:100%; height:8mm; line-height:105%; text-align:left">
<xsl:call-template name="PopulateReturnHeaderFiler"><xsl:with-param name="TargetNode">BusinessNameLine1</xsl:with-param></xsl:call-template><br/>
<xsl:call-template name="PopulateReturnHeaderFiler"><xsl:with-param name="TargetNode">BusinessNameLine2</xsl:with-param></xsl:call-template>
</div>
<b>Name and title (print or type)</b>
</div>
<div style="float:right; width:90mm; text-align:center">
<b style="font-size:9pt">Preparer (other than filer/applicant)</b>
<div style="border-bottom:1 solid black; width:100%; height:7mm">
<xsl:call-template name="PopulateReturnHeaderPreparer">
<xsl:with-param name="TargetNode">SSN</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="PopulateReturnHeaderPreparer">
<xsl:with-param name="TargetNode">PTIN</xsl:with-param>
</xsl:call-template>
</div>
<b>Signature of individual preparing the application and date</b>
<div style="border-bottom:1 solid black; width:100%; height:8mm;text-align:left;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/NameOfPreparerOtherThanFiler" />
</xsl:call-template>
</div>
<b>Name of individual preparing the application (print or type)</b>
<div style="border-bottom:1 solid black; width:100%; text-align:left; height:8mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/PreparingFirmBusinessName/BusinessNameLine1" />
</xsl:call-template>
<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/PreparingFirmBusinessName/BusinessNameLine2" />
</xsl:call-template>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3115Data/PreparingFirmPersonName" />
</xsl:call-template>
</div>
<b>Name of firm preparing the application</b>
</div>
</div>
</div>
<xsl:call-template name="IRS3115Footer">
<xsl:with-param name="thisPage" select="2"/>
</xsl:call-template>
<div class="styBB" style="width:187mm; border-top:1 solid black">
<div class="styPartName" style="width:12mm; height:4.2mm; font-size:9.5pt">Part II</div>
<div class="styPartDesc" style="width:150mm; font-size:9.5pt">
Information For All Requests <span style="font-weight:normal">(continued)</span>
</div>
<div style="float:right">
<div class="styIRS3115YesBox" style="border-bottom:0; height:4.2mm; font-size:9pt"><b>Yes</b></div>
<div class="styIRS3115NoBox" style="border-bottom:0; height:4.2mm; font-size:9pt"><b>No</b></div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox" style="text-align:center; padding-top:1mm">4c</div>
<div style="float:left; padding-top:1mm">
Is the method of accounting the applicant is requesting to change an issue pending (with respect to either the<br/>applicant or any present or former consolidated group in which the applicant was a member during the applicable
</div>
<div style="float:right">
<span style="float:left">
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">
Method of Accounting Issue Pending for Any Tax Year Under Examination Repeating Group
</xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form3115Data/IssuePendingExaminationInfo"/>
</xsl:call-template>
</span>
<div class="styIRS3115DimYesBox" style="height:9mm"></div>
<div class="styIRS3115DimNoBox" style="height:9mm"></div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox"></div>
<div style="float:left">
tax year(s)) for any tax year under examination (see instructions)?
</div>
<div style="float:right">
<span class="styDotLn" style="padding-right:4mm">
................
</span>
<div class="styIRS3115YesBox">
<xsl:call-template name="PopulateYesBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsMethodOfAcctIssuePending"/>
</xsl:call-template>
</div>
<div class="styIRS3115NoBox">
<xsl:call-template name="PopulateNoBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsMethodOfAcctIssuePending"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftLtrBox">d</div>
<div style="float:left">
Is the request to change the method of accounting being filed under the procedures requiring that the operating
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox"></div>
<div class="styIRS3115DimNoBox"></div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftNumBox"></div>
<div style="float:left">
division director consent to the filing of the request (see instructions)?
</div>
<div style="float:right">
<span class="styDotLn" style="padding-right:4mm">
..............
</span>
<div class="styIRS3115YesBox">
<xsl:call-template name="PopulateYesBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/DoesRequestRequireConsent"/>
</xsl:call-template>
</div>
<div class="styIRS3115NoBox">
<xsl:call-template name="PopulateNoBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/DoesRequestRequireConsent"/>
</xsl:call-template>
</div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftLtrBox"></div>
<div style="float:left">
If “Yes,” attach the consent statement from the director.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3115Data/DoesRequestRequireConsent"/>
</xsl:call-template>
</div>
<div style="float:right">
<div class="styIRS3115DimYesBox" style="height:4.4mm"></div>
<div class="styIRS3115DimNoBox" style="height:4.4mm"></div>
</div>
</div>
<div style="width:187mm">
<div class="styIRS3115LNLeftLtrBox">e</div>
<div style="float:left">
Is the request to change the method of accounting being filed under the 90-day or 120-day window period?
</div>
<div style="float:right">
<span class="styDotLn" style="padding-right:4mm">.
</span>
<div class="styIRS3115YesBox">
<xsl:call-template name="PopulateYesBox">
<xsl:with-param name="TargetNode" select="$Form3115Data/IsReqFiledUnderWindowPeriod"/>
</xsl:call-template>
</div>