-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1120F.xsl
6827 lines (6814 loc) · 327 KB
/
IRS1120F.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" encoding="UTF-8"?>
<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="IRS1120FStyle.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="FormData" select="$RtnDoc/IRS1120F"/>
<xsl:template match="/">
<html lang="EN-US">
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($FormData)"/>
</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"/>
<!-- Define Character Set -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<meta name="Description" content="IRS Form 1120F"/>
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"/>
<xsl:call-template name="InitJS"/>
<style type="text/css">
<!--Hint: When Special Condition it does not require a pen/ink or pushpin image. The data is displayed in the additional data area at the end of form -->
<!-- Separated text -->
<xsl:if test="not($Print) or $Print=''">
<xsl:call-template name="IRS1120FStyle"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form1120F">
<!-- Begin Header section 1 -->
<xsl:call-template name="DocumentHeader"/>
<div class="styBB" style="width:187mm;border-bottom-width:1px;">
<div class="styFNBox" style="width:31mm;height:21mm;border-right-width:1px;">
Form <span class="styFormNumber" style="font-size:18pt">1120-F</span>
<br/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData"/>
</xsl:call-template>
<!--General Dependency Push Pin
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData"/>
</xsl:call-template>-->
<span style="width:3px;"/>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Form 1120F, Top Left Margin - Change of Acct PD Ind</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/@ChngOfAcctPDUndrSec1442BOrCInd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Form 1120F, Top Left Margin -Section 3019.100-2 Election Ind</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/@section30191002ElectionInd"/>
<xsl:with-param name="Style">padding-left:3mm;</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Form 1120F, Top Left Margin -Short Period Reason 1120 1120F Ind</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/@shortPeriodReason11201120FInd"/>
<xsl:with-param name="Style">padding-left:3mm;</xsl:with-param>
</xsl:call-template>
<br/>
<span class="styAgency">Department of the Treasury</span>
<br/>
<span class="styAgency">Internal Revenue Service</span>
<span class="styAgency" style="width:3mm; padding-left:3mm"/>
</div>
<div class="styFTBox" style="width:125mm;height:21mm;">
<br/>
<div class="styMainTitle" style="height:8mm;">U.S. Income Tax Return of a Foreign Corporation</div>
<div class="styFST" style="height:5mm;font-size:7pt;margin-left:2mm;text-align:center;font-weight:normal;">
For calendar year 2012
<!--<span style="width:6mm;">
<xsl:call-template name="PopulateReturnHeaderTaxYear"/>
</span> -->
, or tax year beginning
<span style="width:18mm;border-bottom:1 solid black;">
<!-- No need to send the parameters -->
<xsl:call-template name="PopulateReturnHeaderTaxPeriodBeginDate"/>
</span>
<!--,
<span style="width: 10mm;">
<xsl:call-template name="PopulateReturnHeaderTaxYear"></xsl:call-template>
</span>
-->
, and ending
<span style="width:18mm;border-bottom:1 solid black;">
<!-- No need to send the parameters -->
<xsl:call-template name="PopulateReturnHeaderTaxPeriodEndDate"/>
</span>
<!--
,
<span style="width: 10mm;">
<xsl:call-template name="PopulateReturnHeaderTaxYear"></xsl:call-template>
</span>
-->
<br/>
<img src="{$ImagePath}/1120F_Bullet_Md.gif" alt="MediumBullet"/>
<b>Information about Form 1120-F and its separate instructions is at
<a href="http://www.irs.gov/form1120f" title="Link to IRS.gov">
<i>www.irs.gov/form1120f.</i>
</a>
</b>
</div>
</div>
<div class="styTYBox" style="width:30mm;height:21mm;;border-left-width:1px;">
<div class="styOMB" style="height:2mm;">OMB No. 1545-0126</div>
<div class="styTY" style="height:11mm;">20<span class="styTYColor">12</span>
</div>
</div>
</div>
<!-- End Header section 1 -->
<!-- Begin Header section 2 (return header address box) -->
<table cellpadding="0" cellspacing="0" class="styTable" style="width:187mm;float:left;clear:left; height:21mm">
<tr>
<td valign="top" rowspan="3" class="styUseLbl" style="width:12mm;height:21mm;border-left-width:2px;
border-right-width:1px;border-bottom-width:2px; border-top-width:2px;text-align:left;
font-size:10pt;font-weight:bold;padding-top:10mm;">
Type<br/>
or<br/>
Print
</td>
<td valign="top" class="styNameAddr" style="width:115mm;height:7mm;border-right-width:2px;
border-bottom-width:1px; border-top-width:2px;padding-left:4px;">
Name<br/>
<span class="stySmallText" style="width:90mm;padding-left:2mm;">
<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>
</span>
</td>
<td valign="top" class="styEINDateAssets" style="width:58.5mm;height:9mm;
border-bottom-width:1px;border-right-width:0px; ">
<span class="styBoldText">Employer identification number</span>
<br/>
<br/>
<br/>
<br/>
<span class="styEINFld">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="EINChanged">true</xsl:with-param>
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</span>
</td>
</tr>
<tr>
<td valign="top" class="styNameAddr" style="width:115mm;height:7mm;
border-right-width:2px; border-bottom-width:1px;padding-left:4px;">
Number, street, and room or suite no. (see instructions)<br/>
<span class="stySmallText" style="padding-left:2mm;">
<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>
</span>
</td>
<td rowspan="2" valign="top" class="styEINDateAssets" style="width:58.5mm;height:15mm;
border-bottom-width:1px;border-right-width:0px; ">
<span class="styBoldText" style="padding-top:1mm; height:2mm">Check box(es) if:</span>
<span style="padding-left:13mm">
<!-- begin check box for initial return -->
<input type="checkbox" alt="IRS1120FInitialReturn" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/InitialReturn"/>
<xsl:with-param name="BackupName">IRS1120FInitialReturn</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/InitialReturn"/>
<xsl:with-param name="BackupName">IRS1120FInitialReturn</xsl:with-param>
</xsl:call-template>
Initial return
</label>
</span>
<br/>
<!-- end check box for initial return -->
<!-- begin check box for name, address change -->
<span style="padding-top:1mm; height:2mm"/>
<input type="checkbox" alt="IRS1120FNameOrAddressChange" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/NameOrAddressChange"/>
<xsl:with-param name="BackupName">IRS1120FNameOrAddressChange</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/NameOrAddressChange"/>
<xsl:with-param name="BackupName">IRS1120FNameOrAddressChange</xsl:with-param>
</xsl:call-template>
Name or Address change
</label>
<!-- end check box for name, address change -->
<!-- begin check box for final return -->
<span style="padding-left:2mm">
<input type="checkbox" alt="IRS1120FFinalReturn" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/FinalReturn"/>
<xsl:with-param name="BackupName">IRS1120FFinalReturn</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/FinalReturn"/>
<xsl:with-param name="BackupName">IRS1120FinalReturn</xsl:with-param>
</xsl:call-template>
Final return
</label>
</span>
<br/>
<!-- end check box for final return -->
<!-- begin check box for first post-merger return -->
<span style="padding-top:1mm; height:2mm"/>
<input type="checkbox" alt="IRS1120FFirstPostMergerReturn" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/FirstPostMergerReturn"/>
<xsl:with-param name="BackupName">IRS1120FFirstPostMergerReturn</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/FirstPostMergerReturn"/>
<xsl:with-param name="BackupName">IRS1120FFirstPostMergerReturn</xsl:with-param>
</xsl:call-template>
First post-merger return
</label>
<!-- end check box for first post-merger return -->
<!-- begin check box for amended return -->
<span style="width:3.4mm;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/AmendedReturn"/>
</xsl:call-template>
</span>
<span style="padding-left:.05mm">
<input type="checkbox" alt="IRS1120FAmendedReturn" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/AmendedReturn"/>
<xsl:with-param name="BackupName">IRS1120FAmendedReturn</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/AmendedReturn"/>
<xsl:with-param name="BackupName">IRS1120FAmendedReturn</xsl:with-param>
</xsl:call-template>
Amended return
</label>
</span>
<br/>
<!-- end check box for amended return -->
<!-- begin check box for schedule M-3 attached -->
<span style="padding-top:1mm; height:2mm"/>
<input type="checkbox" alt="IRS1120FScheduleM3Attached" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/ScheduleM3Attached"/>
<xsl:with-param name="BackupName">IRS1120FScheduleM3Attached</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/ScheduleM3Attached"/>
<xsl:with-param name="BackupName">IRS1120FScheduleM3Attached</xsl:with-param>
</xsl:call-template>
Schedule M-3 attached
</label>
<span style="width:3.4mm;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/ScheduleM3Attached"/>
</xsl:call-template>
</span>
<span style="width:1mm;"/>
<input type="checkbox" alt="IRS1120FSupersededReturn" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/SupersededReturn"/>
<xsl:with-param name="BackupName">IRS1120FSupersededReturn</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/SupersededReturn"/>
<xsl:with-param name="BackupName">IRS1120FSupersededReturn</xsl:with-param>
</xsl:call-template>
<span style="font-size:5pt">
Superseded Return
</span>
</label>
<span style="width:33.5mm;"/>
<!-- end check box for schedule M-3 attached -->
<!-- begin check box for protective return -->
<input type="checkbox" alt="IRS1120FProtectiveReturn" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/ProtectiveReturn"/>
<xsl:with-param name="BackupName">IRS1120FProtectiveReturn</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/ProtectiveReturn"/>
<xsl:with-param name="BackupName">IRS1120FProtectiveReturn</xsl:with-param>
</xsl:call-template>
Protective return
</label>
<br/>
<!-- end check box for protective return -->
</td>
</tr>
<tr>
<td valign="top" class="styNameAddr" style="width:115mm;height:7mm;
border-right-width:2px; border-bottom-width:2px;padding-left:4px;">
City or town, state and ZIP code, or country (see instructions)<br/>
<span class="stySmallText" style="width:90mm;padding-left:2mm;">
<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:with-param name="MainForm">true</xsl:with-param>
</xsl:call-template>
</span>
</td>
</tr>
</table>
<!-- End Header section 2 (return header address box) -->
<!-- begin main content area -->
<div style="width:187mm;font-size:7pt">
<table class="styTable" cellspacing="0" cellpadding="0" style="font-size:7pt; width:187mm;
border: 0 solid black;border-bottom-width:1px">
<tr>
<!-- begin left side -->
<td valign="top" class="styGenericDiv" style="width:100mm;border: 0 solid black;border-right-width:1px">
<!-- begin line A -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox" style="height:4.2mm">A</div>
<div class="styIRS1120FLNDesc" style="height:4.2mm">Country of incorporation
<span class="sty1120FItemUnderline" style="width:61mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/CountryOfIncorporation"/>
</xsl:call-template>
</span>
</div>
</div>
<!-- end line A -->
<!-- begin line B -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox" style="padding-top:0px">B</div>
<div class="styIRS1120FLNDesc">
Foreign country under whose laws the income reported on this return is also subject to tax
<span class="sty1120FItemUnderline" style="width:68.4mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/ForeignCountryIncomeSubjToTax"/>
</xsl:call-template>
</span>
</div>
</div>
<!-- end line B -->
<!-- begin line C -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox" style="height:4.2mm">C</div>
<div class="styIRS1120FLNDesc" style="height:4.2mm">
Date incorporated
<span class="sty1120FItemUnderline" style="width:69.2mm">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="$FormData/DateIncorporated"/>
</xsl:call-template>
</span>
</div>
</div>
<!-- end line C -->
<!-- begin line D (1) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox" style="height:4.5mm; padding-top:1mm">D</div>
<div class="styIRS1120FLNDesc" style="height:4.5mm; padding-top:1mm">
<b>(1)</b> Location of corporation’s primary books and records (city, province
<span style="width:5mm"/> or state, and country)
<xsl:choose>
<xsl:when test="string-length($FormData/LocationOfPrimaryBooks/City) +
string-length($FormData/LocationOfPrimaryBooks/ProvinceOrState) +
string-length($FormData/LocationOfPrimaryBooks/Country) > 28">
<span class="sty1120FItemUnderlineSM" style="width:59.5mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/LocationOfPrimaryBooks/City"/>
</xsl:call-template>
</span>
<br/>
<span class="sty1120FItemUnderlineSM" style="width:94mm; float:left; clear:none;">
<xsl:if test="not($FormData/LocationOfPrimaryBooks/ProvinceOrState = '')">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/LocationOfPrimaryBooks/ProvinceOrState"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="not($FormData/LocationOfPrimaryBooks/ProvinceOrState = '') and
$FormData/LocationOfPrimaryBooks/ProvinceOrState and
not($FormData/LocationOfPrimaryBooks/Country = '') and
$FormData/LocationOfPrimaryBooks/Country">
<span>, </span>
</xsl:if>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/LocationOfPrimaryBooks/Country"/>
</xsl:call-template>
</span>
</xsl:when>
<xsl:otherwise>
<span class="sty1120FItemUnderlineSM" style="width:59.5mm">
<xsl:if test="not($FormData/LocationOfPrimaryBooks/City= '') and $FormData/LocationOfPrimaryBooks/City">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/LocationOfPrimaryBooks/City"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="(not($FormData/LocationOfPrimaryBooks/City = '') and
$FormData/LocationOfPrimaryBooks/City) and
((not($FormData/LocationOfPrimaryBooks/Country = '') and
$FormData/LocationOfPrimaryBooks/Country) or
(not($FormData/LocationOfPrimaryBooks/ProvinceOrState = '') and
$FormData/LocationOfPrimaryBooks/ProvinceOrState))">
<span>, </span>
</xsl:if>
<xsl:if test="not($FormData/LocationOfPrimaryBooks/ProvinceOrState = '') and
$FormData/LocationOfPrimaryBooks/ProvinceOrState">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/LocationOfPrimaryBooks/ProvinceOrState"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="not($FormData/LocationOfPrimaryBooks/ProvinceOrState = '') and
$FormData/LocationOfPrimaryBooks/ProvinceOrState and
not($FormData/LocationOfPrimaryBooks/Country = '') and
$FormData/LocationOfPrimaryBooks/Country">
<span>, </span>
</xsl:if>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/LocationOfPrimaryBooks/Country"/>
</xsl:call-template>
</span>
</xsl:otherwise>
</xsl:choose>
</div>
</div>
<!-- end line D (1) -->
<!-- begin line D (2) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox" style="text-valign:top; height:4.5mm;"/>
<div class="styIRS1120FLNDesc" style="height:4.5mm; padding-top:1mm">
<b>(2)</b> Principal location of worldwide business
<span class="sty1120FItemUnderline" style="width:35.8mm">
<span style="width:1px"/>
</span>
<xsl:variable name="LocUSAddressBlank">
<xsl:value-of select="$FormData/PrincipleLocationUSAddress/AddressLine1 = ''
and $FormData/PrincipleLocationUSAddress/AddressLine2 = ''
and $FormData/PrincipleLocationUSAddress/City = ''
and $FormData/PrincipleLocationUSAddress/State = ''
and $FormData/PrincipleLocationUSAddress/ZIPCode = ''"/>
</xsl:variable>
<xsl:variable name="LocForeignAddressBlank">
<xsl:value-of select="$FormData/PrincipleLocationFrgnAddress/AddressLine1 = ''
and $FormData/PrincipleLocationFrgnAddress/AddressLine2 = ''
and $FormData/PrincipleLocationFrgnAddress/City = ''
and $FormData/PrincipleLocationFrgnAddress/ProvinceOrState = ''
and $FormData/PrincipleLocationFrgnAddress/PostalCode = ''
and $FormData/PrincipleLocationFrgnAddress/Country = ''"/>
</xsl:variable>
<xsl:if test="$FormData/PrincipleLocationUSAddress and $LocUSAddressBlank = 'false'">
<span class="sty1120FItemUnderlineSM" style="width:94mm; float:left; clear:none;">
<xsl:call-template name="PopulateUSAddressTemplate">
<xsl:with-param name="TargetNode" select="$FormData/PrincipleLocationUSAddress"/>
</xsl:call-template>
</span>
</xsl:if>
<xsl:if test="$FormData/PrincipleLocationFrgnAddress and $LocForeignAddressBlank = 'false'">
<span class="sty1120FItemUnderlineSM" style="width:94mm; float:left; clear:none;">
<xsl:call-template name="PopulateForeignAddressTemplate">
<xsl:with-param name="TargetNode" select="$FormData/PrincipleLocationFrgnAddress"/>
</xsl:call-template>
</span>
</xsl:if>
</div>
</div>
<!-- end line D (2) -->
<!-- begin line D (3) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox" style="text-valign:top; height:4.5mm;"/>
<div class="styIRS1120FLNDesc" style="height:4.5mm; padding-top:1mm">
<b>(3) </b>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/MaintainOfficeInUS"/>
<xsl:with-param name="BackupName">IRS1120FMaintainOfficeInUS</xsl:with-param>
</xsl:call-template>
If the corporation maintains an office or place of business in the<br/>
<span style="width:5mm"/>United States, check here
</label>
<!--Dotted Line-->
<span class="styDotLn" style="float:none">............</span>
<span style="padding-left:1mm">
<img src="{$ImagePath}/1120F_Bullet_Sm.gif" alt="SmallBullet"/>
</span>
<span style="width:8px"/>
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/MaintainOfficeInUS"/>
<xsl:with-param name="BackupName">IRS1120FMaintainOfficeInUS</xsl:with-param>
</xsl:call-template>
</input>
</div>
</div>
<!-- end line D (3) -->
<!-- begin line E -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox" style="padding-top:0mm">E</div>
<div class="styIRS1120FLNDesc">
If the corporation had an agent in the United States at any time during the tax year, enter:</div>
</div>
<!-- end line E -->
<!-- begin line E (1) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox"/>
<div class="styIRS1120FLNDesc">
<b>(1)</b> Type of agent
<span class="sty1120FItemUnderlineSM" style="width:70mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/TypeOfAgent"/>
</xsl:call-template>
</span>
<br/>
<!--<span class="sty1120FItemUnderlineSM" style="width:94mm; float:left; clear:none;"></span>-->
</div>
</div>
<!-- end line E (1) -->
<!-- begin line E (2) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox"/>
<div class="styIRS1120FLNDesc">
<b>(2)</b> Name
<span class="sty1120FItemUnderlineSM" style="width:80.4mm">
<xsl:if test="$FormData/NameOfAgentPerson">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/NameOfAgentPerson"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="$FormData/NameOfAgentBusiness">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/NameOfAgentBusiness/BusinessNameLine1"/>
</xsl:call-template>
</xsl:if>
</span>
<xsl:if test="$FormData/NameOfAgentBusiness">
<br/>
<span class="sty1120FItemUnderlineSM" style="width:94mm; float:left; clear:none;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/NameOfAgentBusiness/BusinessNameLine2"/>
</xsl:call-template>
</span>
</xsl:if>
</div>
</div>
<!-- end line E (2) -->
<!-- begin line E (3) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox"/>
<div class="styIRS1120FLNDesc">
<b>(3)</b> Address
<span class="sty1120FItemUnderlineSM" style="width:77mm">
<span style="width:1px"/>
</span>
<xsl:variable name="USAddressBlank">
<xsl:value-of select="$FormData/USAddressOfAgent/AddressLine1 = ''
and $FormData/USAddressOfAgent/AddressLine2 = ''
and $FormData/USAddressOfAgent/City = ''
and $FormData/USAddressOfAgent/State = ''
and $FormData/USAddressOfAgent/ZIPCode = ''"/>
</xsl:variable>
<xsl:variable name="ForeignAddressBlank">
<xsl:value-of select="$FormData/ForeignAddressOfAgent/AddressLine1 = ''
and $FormData/ForeignAddressOfAgent/AddressLine2 = ''
and $FormData/ForeignAddressOfAgent/City = ''
and $FormData/ForeignAddressOfAgent/ProvinceOrState = ''
and $FormData/ForeignAddressOfAgent/PostalCode = ''
and $FormData/ForeignAddressOfAgent/Country = ''"/>
</xsl:variable>
<xsl:variable name="AddressNotPresent">
<xsl:value-of select="(not($FormData/USAddressOfAgent) and not($FormData/ForeignAddressOfAgent)) or
(not($FormData/USAddressOfAgent) and $ForeignAddressBlank = 'true') or
(not($FormData/ForeignAddressOfAgent) and $USAddressBlank = 'true')"/>
</xsl:variable>
<xsl:choose>
<xsl:when test="$AddressNotPresent = 'true'">
<span class="sty1120FItemUnderline" style="width:94mm; float:left; clear:none;">
<span style="width:1px"/>
</span>
<span class="sty1120FItemUnderline" style="width:94mm; float:left; clear:none;">
<span style="width:1px"/>
</span>
</xsl:when>
<xsl:when test="$FormData/USAddressOfAgent and $USAddressBlank = 'false'">
<span class="sty1120FItemUnderlineSM" style="width:94mm; float:left; clear:none;">
<xsl:call-template name="PopulateUSAddressTemplate">
<xsl:with-param name="TargetNode" select="$FormData/USAddressOfAgent"/>
</xsl:call-template>
</span>
</xsl:when>
<xsl:when test="$FormData/ForeignAddressOfAgent and $ForeignAddressBlank = 'false'">
<span class="sty1120FItemUnderlineSM" style="width:94mm; float:left; clear:none;">
<xsl:call-template name="PopulateForeignAddressTemplate">
<xsl:with-param name="TargetNode" select="$FormData/ForeignAddressOfAgent"/>
</xsl:call-template>
</span>
</xsl:when>
</xsl:choose>
</div>
</div>
<!-- end line E (3) -->
<!-- begin line F -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox">F</div>
<div class="styIRS1120FLNDesc" style="padding-top:.5mm">
See the instructions and enter the corporation’s principal:</div>
</div>
<!-- end line F -->
<!-- begin line F (1) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox"/>
<div class="styIRS1120FLNDesc">
<b>(1) </b>Business activity code number<span style="width:2mm"/>
<img src="{$ImagePath}/1120F_Bullet_Sm.gif" alt="SmallBullet"/>
<span style="width:1mm"/>
<span class="sty1120FItemUnderline" style="width:42.8mm">
<xsl:if test="$FormData/BusinessActivityCode">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/BusinessActivityCode"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="$FormData/InactiveBusinessActivityCode">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/InactiveBusinessActivityCode"/>
</xsl:call-template>
</xsl:if>
</span>
</div>
</div>
<!-- end line F (1) -->
<!-- begin line F (2) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox"/>
<div class="styIRS1120FLNDesc">
<b>(2) </b>Business activity<span style="width:2mm"/>
<img src="{$ImagePath}/1120F_Bullet_Sm.gif" alt="SmallBullet"/>
<span style="width:1mm"/>
<span class="sty1120FItemUnderline" style="width:60.6mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/BusinessActivity"/>
</xsl:call-template>
</span>
</div>
</div>
<!-- end line F (2) -->
<!-- begin line F (3) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox"/>
<div class="styIRS1120FLNDesc">
<b>(3) </b>Product or service<span style="width:2mm"/>
<img src="{$ImagePath}/1120F_Bullet_Sm.gif" alt="SmallBullet"/>
<span style="width:1mm"/>
<span class="sty1120FItemUnderlineSM" style="width:59.3mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/ProductOrService"/>
</xsl:call-template>
</span>
</div>
</div>
<!-- end line F (3) -->
<!-- begin line G(1,2) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox">G</div>
<div class="styIRS1120FLNDesc" style="padding-top:.5mm">
Check method of accounting:
<span style="padding-left:3mm;">
<b>(1)</b>
</span>
<span style="padding-left:2mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/MethodOfAcctCash"/>
<xsl:with-param name="BackupName">IRS1120FMethodOfAcctCash</xsl:with-param>
</xsl:call-template>
</input>
</span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/MethodOfAcctCash"/>
<xsl:with-param name="BackupName">IRS1120FMethodOfAcctCash</xsl:with-param>
</xsl:call-template>
<span style="padding-left:2mm;">Cash</span>
</label>
<span style="padding-left:3mm;">
<b>(2)</b>
</span>
<span style="padding-left:2mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/MethodOfAcctAccrual"/>
<xsl:with-param name="BackupName">IRS1120FMethodOfAcctAccrual</xsl:with-param>
</xsl:call-template>
</input>
</span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/MethodOfAcctAccrual"/>
<xsl:with-param name="BackupName">IRS1120FMethodOfAcctAccrual</xsl:with-param>
</xsl:call-template>
<span style="padding-left:2mm;">Accrual</span>
</label>
</div>
</div>
<!-- end line G(1,2) -->
<!-- begin line G (3) -->
<div class="styGenericDiv" style="width:100mm;">
<div class="styIRS1120FLNLeftNumBox"/>
<div class="styIRS1120FLNDesc">
<b>(3)</b>
<span style="padding-left:2mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/MethodOfAcctOther"/>
<xsl:with-param name="BackupName">IRS1120FMethodOfAcctOther</xsl:with-param>
</xsl:call-template>
</input>
</span>
<span style="width:2mm"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/MethodOfAcctOther"/>
<xsl:with-param name="BackupName">IRS1120FMethodOfAcctOther</xsl:with-param>
</xsl:call-template>
Other (specify)
</label>
<span style="width:2mm;"/>
<img src="{$ImagePath}/1120F_Bullet_Sm.gif" alt="SmallBullet"/>
<span class="sty1120FItemUnderlineSM" style="width:56.7mm">
<!-- Form to Form Link -->
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/MethodOfAcctOther/@OtherMethodOfAcctSpecify"/>
</xsl:call-template>
</span>
<br/>
<span class="sty1120FItemUnderlineSM" style="width:94mm; float:left; clear:none;"/>
<br/>
<span style="width:1px;"/>
</div>
</div>
<!-- end line G (3) -->
</td>
<!-- end left side -->
<!-- begin right side -->
<td class="styGenericDiv" style="width:87mm;vertical-align:top;">
<table cellpadding="0" cellspacing="0" style="width:87mm;font-size:7pt">
<tbody>
<!-- begin line H -->
<tr>
<td class="styIRS1120FRGnewLeftNumBox">H</td>
<td class="styIRS1120FRGnewDesc" style="text-align-last:justify">
Did the corporation’s method of accounting change
</td>
<td class="styIRS1120FRGnewYesNoBox" style="font-weight:bold;">Yes</td>
<td class="styIRS1120FRGnewYesNoBox" style="font-weight:bold;">No</td>
</tr>
<tr>
<td class="styIRS1120FRGnewLeftNumBox"/>
<td class="styIRS1120FRGnewDesc">
<div class="sty1120FRightFloat">
<span class="sty1120FDotLn">........</span>
</div>
<span style="text-align:left">from the preceding tax year?</span>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/AccountingMethodChangeFromPrYr"/>
</xsl:call-template>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/AccountingMethodChangeFromPrYr"/>
</xsl:call-template>
</td>
</tr>
<tr>
<td class="styIRS1120FRGnewLeftNumBox" style="height:5mm"/>
<td class="styIRS1120FRGnewDesc" style="text-align:left">
If “Yes,” attach a statement with an explanation.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/AccountingMethodChangeFromPrYr"/>
</xsl:call-template>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded ">
<span style="width:1px"/>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded ">
<span style="width:1px"/>
</td>
</tr>
<!--Begin Line I-->
<tr>
<td class="styIRS1120FRGnewLeftNumBox">I</td>
<td class="styIRS1120FRGnewDesc">
<div style="text-align-last:justify">
Did the corporation’s method of determining income
</div>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
</tr>
<tr>
<td class="styIRS1120FRGnewLeftNumBox"/>
<td class="styIRS1120FRGnewDesc">
<div class="sty1120FRightFloat">
<span class="sty1120FDotLn">......</span>
</div>
<span style="text-align:left">change from the preceding tax year?</span>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/DeterminationMethodChgFromPrYr"/>
</xsl:call-template>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/DeterminationMethodChgFromPrYr"/>
</xsl:call-template>
</td>
</tr>
<tr>
<td class="styIRS1120FRGnewLeftNumBox" style="height:5mm"/>
<td class="styIRS1120FRGnewDesc" style="text-align:left">
If “Yes,” attach a statement with an explanation.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/DeterminationMethodChgFromPrYr"/>
</xsl:call-template>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
</tr>
<!--Begin Line J-->
<tr>
<td class="styIRS1120FRGnewLeftNumBox">J</td>
<td class="styIRS1120FRGnewDesc">
<div style="text-align-last:justify">
Did the corporation file a U.S. income tax return for
</div>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
</tr>
<tr>
<td class="styIRS1120FRGnewLeftNumBox"/>
<td class="styIRS1120FRGnewDesc">
<div class="sty1120FRightFloat">
<span class="sty1120FDotLn">..........</span>
</div>
<span style="text-align:left">the preceding tax year?</span>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/PrecedingUSTaxReturn"/>
</xsl:call-template>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/PrecedingUSTaxReturn"/>
</xsl:call-template>
</td>
</tr>
<!--Begin Line K (1)-->
<tr>
<td class="styIRS1120FRGnewLeftNumBox">K</td>
<td class="styIRS1120FRGnewDesc">
<div style="text-align-last:justify;font-size:6pt">
<span style="font-weight:bold;font-size:7pt">(1) </span>At any time during the tax year, was the corporation<br/>
<span style="width:5.7mm"/>engaged in a trade or business in the United States?
</div>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/TradeOrBusinessInUS"/>
</xsl:call-template>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/TradeOrBusinessInUS"/>
</xsl:call-template>
</td>
</tr>
<!--Begin Line K (2)-->
<tr>
<td class="styIRS1120FRGnewLeftNumBox"/>
<td class="styIRS1120FRGnewDesc">
<div style="text-align-last:justify;font-size:6pt">
<span style="font-weight:bold;font-size:7pt">(2) </span>If “Yes,” is taxpayer’s trade or business within the<br/>
<span style="width:5.7mm"/>United States solely the result of a section 897
</div>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
</tr>
<tr>
<td class="styIRS1120FRGnewLeftNumBox"/>
<td class="styIRS1120FRGnewDesc">
<div class="sty1120FRightFloat">
<span class="sty1120FDotLn">........</span>
</div>
<span style="width:5.7mm"/>
<span style="font-size:6pt;text-align:left">(FIRPTA) sale or disposition?</span>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/FIRPTASaleOrDisposition"/>
</xsl:call-template>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/FIRPTASaleOrDisposition"/>
</xsl:call-template>
</td>
</tr>
<!--Begin Line L-->
<tr>
<td class="styIRS1120FRGnewLeftNumBox">L</td>
<td class="styIRS1120FRGnewDesc">
<div style="text-align-last:justify">
Did the corporation have a permanent establishment in the United States for purposes of any applicable
tax treaty between the United States and a foreign
</div>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
<td class="styIRS1120FRGnewYesNoBoxShaded">
<span style="width:1px"/>
</td>
</tr>
<tr>
<td class="styIRS1120FRGnewLeftNumBox"/>
<td class="styIRS1120FRGnewDesc">
<div class="sty1120FRightFloat">
<span class="sty1120FDotLn">..............</span>
</div>
<span style="text-align:left">country?</span>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/PrmnntEstabInUSForSect894bTrty"/>
</xsl:call-template>
</td>
<td class="styIRS1120FRGnewYesNoBox">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/PrmnntEstabInUSForSect894bTrty"/>
</xsl:call-template>
</td>
</tr>
<tr>
<td class="styIRS1120FRGnewLeftNumBox" style="height:6mm"/>
<td class="styIRS1120FRGnewDesc" style="text-align:left;padding-bottom:1mm">
If “Yes,” enter the name of the foreign country:<br/>
<span class="sty1120FItemUnderline" style="width:70mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/ForeignCountryName"/>
</xsl:call-template>