-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS8888.xsl
741 lines (735 loc) · 43.7 KB
/
IRS8888.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
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2008 rel. 2 (http://www.altova.com) by Mary Crawford (IRS) -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="IRS8888Template.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS8888Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="Form8888Data" select="$RtnDoc/IRS8888"/>
<xsl:template match="/">
<html>
<head>
<META http-equiv="Content-Type" content="text/html"/>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form8888Data)"/>
</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 8888"/>
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"/>
<xsl:call-template name="InitJS"/>
<style type="text/css">
<xsl:if test="not($Print) or $Print=''">
<xsl:call-template name="IRS8888Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form8888">
<xsl:call-template name="DocumentHeader"/>
<div class="styBB" style="width:187mm;padding-bottom:0mm;">
<div class="styFNBox" style="width:31mm;height:23mm;padding-bottom:0mm;">
<div style="padding-top:3mm;padding-bottom:3mm;font-size:8pt;">
Form<span class="styFormNumber"> 8888</span>
</div>
<div class="styAgency" style="font-size:7.5pt;padding-bottom:0mm;">Department of the Treasury<br>
Internal Revenue Service</br>
</div>
</div>
<div class="styFTBox" style="width:120mm;height:4mm;padding-bottom:0mm;">
<div class="styMainTitle" style="font-size: 12pt;height:4mm;padding-top:3mm;padding-bottom:1.5mm;">Allocation of Refund (Including Savings Bond Purchases)</div>
<div class="styFBT" style="height:1mm;margin-top:1mm;padding-bottom:1.5mm;font-size:7.5pt;">
<img src="{$ImagePath}/8888_Bullet_Md.gif" alt="Bullet"/>
See separate instructions and
<i> www.irs.gov/form8888</i>.</div>
<img src="{$ImagePath}/8888_Bullet_Md.gif" alt="Bullet"/>
<b> Attach your income tax return.</b>
</div>
<div class="styTYBox" style="width:32mm;height:23mm;text-align:left;">
<div class="styOMB" style="width:35.5mm;height:2mm;font-size:7pt;padding-left:2mm;padding-top:3mm;padding-bottom:0mm;">OMB No. 1545-0074</div>
<div class="styTaxYear" style="width:32mm;height:1mm;margin-left:3mm;
padding-left:3mm;padding-bottom:0mm;">20<span class="styTYColor">12</span>
</div>
<div style="width:32mm;height:1mm;margin-left:3mm; text-align:left;font-size:7pt;padding-bottom:0mm;border:">
Attachment<br/> Sequence No. <b> 56</b>
</div>
</div>
</div>
<!-- BEGIN Occupation TITLE -->
<div class="styBB" style="width:187mm;">
<div class="styNameBox" style="width:135mm;font-size:7.5pt;font-weight:normal;padding-top:0mm;padding-bottom:0mm;height:8mm;">
Name(s) shown on return<br/>
<div style="padding-top:2mm;padding-bottom:0mm;">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine1</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine2</xsl:with-param>
</xsl:call-template>
</div>
</div>
<div class="styIRS8888SSNBox" style="width:45mm;font-size:7pt;font-weight:normal;padding-top:0mm;padding-bottom:0mm;height:8mm;">
<b>Your social security number</b>
<br/>
<div style="padding-top:2mm;padding-bottom:0mm;text-align:left">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">PrimarySSN</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
<!-- Part 1-->
<div style="width:187mm;font-family:Arial;font-size:9.5pt;" class="styBB">
<div class="styPartName" style="height:4mm;font-size:9.5pt;">Part I</div>
<div class="styPartDesc" style="font-weight:normal;font-size:9.5pt;">
<b>Direct Deposit</b>
<br/>
<span style="font-size:8.5pt;">
Complete this part if you want us to directly deposit a portion of your tax refund to one or more accounts.
</span>
</div>
</div>
<div style="width:187mm;height:4.5mm;">
<xsl:variable name="pos" select="position()"/>
<xsl:if test="(position() mod 3)=1">
<div class="styIRS8888TableContainer" id="Spcctn">
<xsl:call-template name="SetInitialState"/>
<!-- Beginning of 1a -->
<div style="width:187mm;font-size:8.5pt;font-family:Arial;height:3mm;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:8mm;padding-left:1.7mm;height:3mm">
<xsl:number value="($pos)" format="1"/>a</div>
<div class="styLNDesc" style="width:140.3mm;height:3mm">Amount to be deposited in first account
<!--Dotted Line-->
<span class="styDotLn" style="float:none;padding-left:0mm;padding-right:.5mm;">.....................</span>
</div>
</span>
<span style="float:right;">
<div class="styLNLeftNumBox" style="height:4.9mm;width:7mm;text-align:center;border-style:solid;border-right-width:1px;border-left-width:1px;border-top-width:0px;border-bottom-width:1px;border-color:black;padding-bottom:.5mm;padding-top:.5mm;">
<xsl:number value="($pos)" format="1"/>a</div>
<div class="styLNAmountBox" style="font-size:7.5pt;border-bottom-width:1px;border-left-width:0px;border-right-width:0px;width:31mm;clear:right;height:4.9mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos]/DirectDepositRefundAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<div style="width:187mm;font-size:8.5pt;height:3mm;font-family:Arial;padding-top:0px;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:8mm;padding-left:1.7mm;height:100%"/>
<div class="styLNDesc" style="width:140.3mm;height:3mm">
</div>
</span>
<span style="float:right;">
<div class="styLNLeftNumBox" style="height:4.7mm;width:7mm;border-style:solid;border-width:0px 1px 0px 1px;border-color:black;padding:0px 0px 0px 0px;background-color:#B8B8B8;"/>
<div class="styLNAmountBox" style="font-size:7.5pt;border-width:0px 0px 0px 0px;width:31mm;clear:right;height:4.7mm;"/>
</span>
</div>
<!-- End of Step 1a -->
<!-- Beginning of b -->
<div style="width:187mm;font-size:8.5pt;height:8mm;font-family:Arial;padding-top:0px;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="padding-right:3mm;text-align:right;padding-top:.5mm;height:8mm;">b</div>
<div class="styLNDesc" style="width:140.3mm;padding-top:0mm;padding-bottom:0mm;height:8mm;">
<div class="styLNDesc" style="width:28mm;">Routing number</div>
<!-- call routing number -->
<span class="styLNCtrNumBox" style="width:34mm;border-top-width:1px;padding-top:0mm;padding-bottom:0mm;font-weight:normal;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos]/RoutingTransitNumber"/>
<xsl:with-param name="BackupName">IRS1040RoutingTransitNumber1</xsl:with-param>
</xsl:call-template>
</span>
<span style="width:4mm;padding-top:.5mm;padding-bottom:.5mm;float:left;clear:none;"/>
<span style="height:6mm;padding-bottom:1mm;float:left;clear:none;">
<img src="{$ImagePath}/8888_Bullet_Lg.gif" alt="Bullet"/>
</span>
<span style="width:.3mm;"/>
<span class="styBoldText" style="font-size:8pt;padding-bottom:3mm;">c</span>
<span style="width:3.5mm;"/>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup"/>
</xsl:call-template>
</span>
<input type="checkbox" class="styCkbox" style="height:4mm;width:4mm;">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd</xsl:with-param>
<xsl:with-param name="Checkbox1or2Type">yes</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd</xsl:with-param>
</xsl:call-template>
<span style="font-size:8pt;padding-bottom:0mm;padding-top:2mm;font-family:Arial">Checking</span>
</label>
<span style="width:4mm;"/>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup"/>
</xsl:call-template>
</span>
<input type="checkbox" class="styCkbox" style="height:4mm;width:4mm;">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd</xsl:with-param>
<xsl:with-param name="Checkbox1or2Type">yes</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd</xsl:with-param>
</xsl:call-template>
<span style="font-size:8pt;padding-bottom:0mm;padding-top:2mm;font-family:Arial">Savings</span>
</label>
</div>
</span>
<span style="float:right;">
<div class="styShadingCellRB" style="width:7mm;text-align:center;border-style:solid;border-right-width:1px;border-left-width:1px;height:8mm;border-top-width:0px;border-bottom-width:0px;background-color:#B8B8B8;float:left;clear:right;"/>
<div class="styLNAmountBox" style="width:31mm;padding-top:0mm;border-style:solid;border-right-width:0px;border-left-width:0px;border-top-width:0px;padding-top:0px;border-bottom-width:0px;height:8mm;float:left;"/>
</span>
</div>
<!-- End of 1b -->
<!-- Line 1d -->
<div style="width:187mm;font-size:8.5pt;height:8mm;font-family:Arial;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="padding-right:3mm;font-size:8.5pt;text-align:right;padding-top:1mm;font-family:Arial;height:8mm;">d</div>
<div class="styLNDesc" style="height:8mm;width:28mm;padding-top:1mm;">Account number</div>
<span class="styLNCtrNumBox" style="width:84mm;border-top-width:1px;padding-top:0mm;padding-bottom:0mm;font-weight:normal;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos]/DepositorAccountNumber"/>
<xsl:with-param name="BackupName">IRS1040DepositorAccountNumber</xsl:with-param>
</xsl:call-template>
</span>
<span style="width:28.3mm;float:left;"/>
</span>
<span style="float:right;">
<div class="styShadingCellRB" style="width:7mm;height:8mm;text-align:center;background-color:#B8B8B8;"/>
<div class="styLNAmountBox" style="width:31mm;padding-top:0mm;border-style:solid;border-right-width:0px;border-left-width:0px;border-top-width:0px;border-bottom-width:0px;height:8mm;float:left;"/>
</span>
</div>
<!-- END of 1d -->
<!-- Beginning of 2a -->
<div class="BB" style="width:187mm;font-size:8.5pt;height:4mm;font-family:Arial;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:6mm;padding-top:1mm;padding-right:3mm;padding-left:1.7mm;height:4mm;padding-bottom:0mm;">
<xsl:number value="($pos + 1)" format="1"/>a</div>
<div class="styLNDesc" style="width:140.4mm;padding-top:1mm;height:4mm;padding-bottom:0mm;">Amount to be deposited in second account
<!--Dotted Line-->
<span class="styDotLn" style="float:none;padding-left:0mm;padding-right:.5mm;clear:none;">..................</span>
</div>
</span>
<span style="float:right;">
<div class="styLNLeftNumBox" style="height:4mm;width:7mm;padding-top:0.5mm;text-align:center;border-style:solid; border-right-width:1px; border-left-width:1px;border-top-width:0px;border-bottom-width:1px;border-color:black;">
<xsl:number value="($pos + 1)" format="1"/>a</div>
<div class="styLNAmountBox" style="height:4mm;font-size:7.5pt;border-left:0px;border-right-width:0px;padding-top:0.9mm;padding-bottom:.5mm;width:31mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 1]/DirectDepositRefundAmt"/>
</xsl:call-template>
</div>
</span>
<!-- blank line space -->
<span style="float:left;">
<div class="styLNDesc" style="height:2mm; width:148.2mm;float:left; clear:none;font-size:7pt;"/>
</span>
<span style="float:right;">
<div class="styShadingCellRB" style="height:5mm; width:7mm; border-style:solid; border-right-width:1px; border-left-width:1px; border-top-width:0px; border-bottom-width:0px; border-color:black; background-color:#B8B8B8; float:left; clear:none;"/>
<div class="styLNAmountBox" style="height:2mm;font-size:7pt;border-bottom-width:0px;border-left-width:0px;border-right-width:0px;width:31mm;float:left;"/>
</span>
</div>
<!-- End of Step 2a -->
<!-- Beginning of b -->
<div style="width:187mm;font-size:8.5pt;height:8mm;font-family:Arial;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="padding-top:1mm;padding-right:3mm;text-align:right;">b</div>
<div class="styLNDesc" style="width:139.5mm;padding-top:0mm;padding-bottom:0mm;">
<div class="styLNDesc" style="width:28mm;padding-top:1mm;">Routing number</div>
<!-- call routing number -->
<span class="styLNCtrNumBox" style="width:34mm;border-top-width:1px;padding-top:0mm;padding-bottom:0mm;font-weight:normal;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 1]/RoutingTransitNumber"/>
<xsl:with-param name="BackupName">IRS1040RoutingTransitNumber1</xsl:with-param>
</xsl:call-template>
</span>
<span style="width:4mm;padding-top:.5mm;padding-bottom:.5mm;float:left; clear: none;"/>
<span style="height:.5mm;padding-bottom:1mm;float:left;clear:none;">
<img src="{$ImagePath}/8888_Bullet_Lg.gif" alt="Bullet"/>
</span>
<span style="width:.3mm;"/>
<span class="styBoldText" style="font-size:8pt;padding-bottom:3mm;">c</span>
<span style="width:3.5mm;"/>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup"/>
</xsl:call-template>
</span>
<input type="checkbox" class="styCkbox" style="height:4mm;width:4mm;">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 1]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd</xsl:with-param>
<xsl:with-param name="Checkbox1or2Type">yes</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 1]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd</xsl:with-param>
</xsl:call-template>
<span style="font-size:8.5pt;padding-bottom:0mm;padding-top:2mm;font-family:Arial;">Checking</span>
</label>
<span style="width:4mm;"/>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup"/>
</xsl:call-template>
</span>
<input type="checkbox" class="styCkbox" style="height:4mm;width:4mm;">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 1]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd1</xsl:with-param>
<xsl:with-param name="Checkbox1or2Type">yes</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 1]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd1</xsl:with-param>
</xsl:call-template>
<span style="font-size:8.5pt;padding-bottom:0mm;padding-top:2mm;font-family:Arial">Savings</span>
</label>
</div>
</span>
<span style="float:right;">
<span style="width:7mm;height:8mm;padding-top:4mm;text-align:center;border-style:solid;border-right-width:1px;border-left-width:1px;
border-top-width:0px;border-bottom-width:0px;border-color:black;background-color:B8B8B8;"/>
<span style="width:31mm;height:8mm;padding-top:4mm;border-style:solid;border-right-width:0px;border-left-width:0px;border-top-width:0px;
border-bottom-width:0px;border-color:black;"/>
</span>
</div>
<!--end of Line 2b -->
<!-- Line 2d -->
<div style="width:187mm;font-size:8.5pt;height:8mm;font-family:Arial;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="height:6mm;padding-top:1mm;;padding-right:3mm;font-size:8.5pt;text-align:right;">d</div>
<div class="styLNDesc" style="width:28mm;height:2mm;padding-top:1mm;font-family:Arial">Account number</div>
<span class="styLNCtrNumBox" style="width:84mm;border-top-width:1px;padding-top:0mm;padding-bottom:0mm;font-weight:normal;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 1]/DepositorAccountNumber"/>
<xsl:with-param name="BackupName">IRS1040DepositorAccountNumber</xsl:with-param>
</xsl:call-template>
</span>
<span style="width:27.5mm;"/>
</span>
<span style="float:right;">
<span style="width:7mm;height:10mm;padding-top:4mm;text-align:center;border-style:solid;
border-right-width:1px;border-left-width:1px;border-top-width:0px;border-bottom-width:0px;border-color:black;background-color:B8B8B8"/>
<span style="width:31mm;height:10mm;padding-top:4mm;border-style:solid; border-right-width:0px; border-left-width:0px;border-top-width:0px;border-bottom-width:0px;border-color:black;"/>
</span>
</div>
<!-- End of 2d -->
<!-- Beginning of 3a -->
<div class="BB" style="width:187mm;font-size:8.5pt;height:4mm;font-family:Arial;padding-bottom:0mm;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:6mm;height:4mm;padding-right:3mm; padding-left:1.7mm;padding-top:0mm;padding-bottom:0mm;font-size:8.5pt;">
<xsl:number value="($pos + 2)" format="1"/>a</div>
<div class="styLNDesc" style="width:140.4mm;height:4mm;padding-bottom:0mm;padding-top:0mm;">Amount to be deposited in third account
<!--Dotted Line-->
<span class="styDotLn" style="float:none;padding-left:0mm;padding-right:.5mm;height:4mm;">...................</span>
</div>
</span>
<span style="float:right;">
<div class="styLNLeftNumBox" style="height:4mm;width:7mm;text-align:center;font-size:8.5pt;border-style:solid;border-right-width:1px;border-left-width:1px;border-top-width:0px;border-bottom-width:1px;border-color:black;padding-top:0.5mm;padding-bottom:0mm;">
<xsl:number value="($pos + 2)" format="1"/>a</div>
<div class="styLNAmountBox" style="height:4mm;font-size:7.5pt;border-left:0px;border-right-width:0px;width:31mm;padding-top:0.9mm;padding-bottom:0mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 2]/DirectDepositRefundAmt"/>
</xsl:call-template>
</div>
</span>
<!-- blank line space -->
<span style="float:left;">
<div class="styLNDesc" style="height:2mm; width:148.2mm;float:left;clear:none;padding-top:0mm;padding-bottom:0mm;"/>
</span>
<span style="float:right;">
<div class="styShadingCellRB" style="height:4.5mm; width:7mm; border-style:solid; border-right-width:1px; border-left-width:1px; border-top-width:0px; border-bottom-width:0px; border-color:black; background-color:#B8B8B8; float:left;clear:none;padding-top:0mm;padding-bottom:0mm;"/>
<div class="styLNAmountBox" style="height:2mm;font-size:7pt;border-bottom-width:0px;border-left-width:0px;border-right-width:0px;width:31mm;float:left;padding-top:0mm;padding-bottom:0mm;clear:right;"/>
</span>
</div>
<!-- End of Step 3a -->
<!-- Beginning of b -->
<div style="width:187mm;font-size:8.5pt;height:8mm;font-family:Arial;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="height:4.5mm;padding-top:1mm;padding-right:3mm;text-align:right;">b</div>
<div class="styLNDesc" style="width:139.5mm;padding-top:0mm;padding-bottom:0mm;">
<div class="styLNDesc" style="width:28mm;height:2mm;padding-top:1mm;">Routing number</div>
<!-- call routing number -->
<span class="styLNCtrNumBox" style="width:34mm;border-top-width:1px;padding-top:0mm;padding-bottom:0mm;font-weight:normal;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 2]/RoutingTransitNumber"/>
<xsl:with-param name="BackupName">IRS1040RoutingTransitNumber1</xsl:with-param>
</xsl:call-template>
</span>
<span style="width:4mm;padding-top:.5mm;padding-bottom:.5mm;float:left; clear: none;"/>
<span style="height:.5mm;padding-bottom:1mm;float:left;clear:none;">
<img src="{$ImagePath}/8888_Bullet_Lg.gif" alt="Bullet"/>
</span>
<span style="width:.3mm;"/>
<span class="styBoldText" style="font-size:8pt;padding-bottom:3mm;">c</span>
<span style="width:3.5mm;"/>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup"/>
</xsl:call-template>
</span>
<input type="checkbox" class="styCkbox" style="height:4mm;width:4mm;">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 2]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd2</xsl:with-param>
<xsl:with-param name="Checkbox1or2Type">yes</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 2]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd2</xsl:with-param>
</xsl:call-template>
<span style="font-size:8.5pt;padding-bottom:0mm;padding-top:2mm;font-family:Arial">Checking</span>
</label>
<span style="width:4mm;"/>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup"/>
</xsl:call-template>
</span>
<input type="checkbox" class="styCkbox" style="height:4mm;width:4mm;">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 2]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd</xsl:with-param>
<xsl:with-param name="Checkbox1or2Type">yes</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 2]/BankAccountTypeCd"/>
<xsl:with-param name="BackupName">IRS8888AccountTypeCd</xsl:with-param>
</xsl:call-template>
<span style="font-size:8.5pt;padding-bottom:0mm;padding-top:2mm;font-family:Arial">Savings</span>
</label>
</div>
</span>
<span style="float:right;">
<span style="width:7mm;height:8.2mm;padding-top:4mm;text-align:center;border-style:solid;border-right-width:1px;border-left-width:1px;
border-top-width:0px;border-bottom-width:0px;border-color:black;background-color:B8B8B8;"/>
<span style="width:31mm;height:8mm;padding-top:4mm;border-style:solid;border-right-width:0px;border-left-width:0px;border-top-width:0px;
border-bottom-width:0px;border-color:black;"/>
</span>
</div>
<!-- Line 3d -->
<div style="width:187mm;font-size:8.5pt;height:8mm;font-family:Arial" class="styBB">
<span style="float:left;">
<div class="styLNLeftNumBox" style="height:4.5mm;padding-top:1mm;padding-right:3mm;font-size:8.5pt;text-align:right;">d</div>
<div class="styLNDesc" style="width:28mm;height:2mm;padding-top:1mm;">Account number</div>
<span class="styLNCtrNumBox" style="width:84mm;border-top-width:1px;padding-top:0mm;padding-bottom:0mm;font-weight:normal;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/DirectDepositInfoGroup[$pos + 2]/DepositorAccountNumber"/>
<xsl:with-param name="BackupName">IRS1040DepositorAccountNumber</xsl:with-param>
</xsl:call-template>
</span>
<span style="width:27.5mm;"/>
</span>
<span style="float:right;">
<span style="width:7mm;height:8mm;padding-top:4mm;text-align:center;border-style:solid;
border-right-width:1px;border-left-width:1px;border-top-width:0px;border-bottom-width:0px;border-color:black;background-color:B8B8B8"/>
<span style="width:31mm;height:4mm;padding-top:4mm;border-style:solid;border-right-width:0px;border-left-width:0px;border-top-width:0px;
border-bottom-width:0px;border-color:black;"/>
</span>
</div>
<!-- End of 3d -->
</div>
</xsl:if>
</div>
<!--Part II-->
<div style="width:187mm;font-size:9.5pt;" class="styBB">
<div class="styBB">
<div class="styPartName" style="height:4mm;font-family:Arial;font-size:9.5pt;">Part II</div>
<div class="styPartDesc" style="font-weight:normal;padding-bottom:.5mm;font-size:9.5pt;">
<b>U.S. Series I Savings Bond Purchases</b>
<br/>
<span style="width:170mm;font-size:8pt;font-family:Arial;">Complete this part if you want to buy paper bonds with a portion of your refund.</span>
</div>
</div>
<!-- Caution image -->
<div style="height:8mm;float:left;padding-left:0mm;">
<img src="{$ImagePath}/8880_Caution.gif" alt="Caution" style="float:left;padding-top:.5mm;"/>
<div class="styLNDesc" style="width:170mm;float:left;font-weight:normal; font-size: 7.5pt;font-style:italic;padding-left:1mm;">
If a name is entered on lines 5c or 6c below, co-ownership will be assumed unless the beneficiary box is checked.<br/>
See instructions for more details.
</div>
</div>
</div>
<!--Line 4 -->
<div style="width:187mm;font-size:8.5pt;height:8mm;padding-top:0mm;font-family:Arial;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:6mm;padding-left:1mm">4</div>
<div class="styLNDesc" style="width:141mm;padding-left:.7mm;">Amount to be used for bond purchases for yourself (and your spouse, if filing jointly)
<!--Dotted Line-->
<span class="styDotLn" style="float:none;padding-left:2.5mm;padding-right:.5mm;">......</span>
</div>
</span>
<span style="float:right;">
<div class="styLNLeftNumBox" style="height:4.5mm;width:7mm;padding-top:0mm;padding-left:1mm;text-align:center;border-style:solid;border-right-width:1px;border-left-width:1px;border-top-width:0px;border-bottom-width:1px;border-color:black;">
4</div>
<div class="styLNAmountBox" style="height:4.5mm;font-size:7.5pt;border-left-width:0px;border-right-width:0px;width:31mm;padding-top:.2mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form8888Data/RefundUsedForBondPurchasesAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- End of Line 4-->
<!-- Line 5a- 5c -->
<div style="width:187mm;font-size:8.5pt;height:3mm;padding-top:0mm;font-family:Arial;">
<xsl:variable name="bondpos" select="position()"/>
<xsl:if test="(position() mod 2)=1">
<!--Line 5a -->
<div style="width:187mm;font-size:8.5pt;height:4.7mm;font-family:Arial;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:6mm;padding-right:3mm;padding-bottom:0mm;height:4mm;">5a</div>
<div class="styLNDesc" style="width:140.2mm;padding-bottom:0mm;height:4mm;">Amount to be used to buy bonds for yourself, your spouse, <b>or</b> someone else
<!--Dotted Line-->
<span class="styDotLn" style="float:none;padding-left:.5mm;padding-right:.5mm;">.........</span>
</div>
</span>
<span style="float:right;">
<div class="styLNLeftNumBox" style="width:7mm;border-style:solid;border-right-width:1px;border-left-width:1px;border-top-width:0px;height:4.7mm;padding-top:0mm;border-bottom-width:1px;border-color:black;text-align:center;">5a
</div>
<div class="styLNAmountBox" style="width:31mm;font-size:7.5pt;border-left-width:0px;border-bottom-width:1px;border-right-width:0px;height:4.7mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form8888Data/SavingsBondPurchaseInfoGrp[$bondpos]/BondPurchasesAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- End of line 5a -->
<!-- Beginning of 5b -->
<div style="width:187mm;font-size8.5pt;height:12mm;padding-top:0mm;font-family:Arial;">
<div class="styLNLeftNumBox" style="width:7.2mm;padding-right:2.8mm;text-align:right;padding-top:0mm;">b</div>
<div class="styLNDesc" style="width:139.5mm;padding-bottom:0mm;padding-top:0mm;">Enter the owner's name (First then Last) for the bond registration
<span class="styNameForBondBox" style="text-align:left;padding-left:2mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/SavingsBondPurchaseInfoGrp[$bondpos]/BondOwnerNm"/>
<xsl:with-param name="BackupName">IRS1040BondOwnerName1</xsl:with-param>
</xsl:call-template>
</span>
<span style="width:4mm;padding-top:.5mm;padding-bottom:.5mm;float:left; clear: none;"/>
<span style="height:.5mm;padding-bottom:1mm;float:left;clear:none;"/>
</div>
</div>
<!-- end line 5b -->
<!-- line 5c -->
<div style="width:187mm;font-size:8.5pt;height:3mm;padding-top:0mm;padding-bottom:0mm;font-family:Arial;">
<div class="styLNLeftNumBox" style="width:7.2mm;padding-right:2.8mm;text-align:right;">c </div>
<div class="styLNDesc" style="width:170mm;">
<label for="beneficiaryInd">If you would like to add a co-owner or beneficiary, enter the name here (First then Last). If beneficiary, also check here</label>
<img src="{$ImagePath}/8888_Bullet_Sm.gif" alt="Bullet"/>
<span style="width:.5mm;"/>
<input type="checkbox" title="beneficiaryInd" id="beneficiaryInd" alt="alt" class="styCkbox" style="height:4mm;width:4mm;">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8888Data/SavingsBondPurchaseInfoGrp[$bondpos]/BeneficiaryInd"/>
<!--<xsl:with-param name="BackupName">IRS8888BeneficiaryIndicator</xsl:with-param>-->
</xsl:call-template>
</input>
</div>
</div>
<div style="width:187mm;font-size:8.5pt;height:4.5mm;padding-top:0mm;font-family:Arial;">
<div class="styLNLeftNumBox" style="width:7.5mm;padding-right:3mm;font-size:8pt;text-align:right;"/>
<span class="styNameForBondBox" style="float:left;text-align:left;padding-left:2mm;clear:right;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/SavingsBondPurchaseInfoGrp[$bondpos]/BondCoOwnerOrBeneficiaryNm"/>
<xsl:with-param name="BackupName">IRS1040BondCoOwnerOrBeneficiaryName</xsl:with-param>
</xsl:call-template>
</span>
<span style="width:27.5mm;"/>
</div>
<!-- End of line 5a- 5c -->
<!-- Line 6a - 6c -->
<!-- Line 6a -->
<div style="width:187mm;font-size:8.5pt;height:4.7mm;font-family:Arial;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:6mm;padding-right:3mm">6a</div>
<div class="styLNDesc" style="width:140.2mm;">Amount to be used to buy bonds for yourself, your spouse, <b>or</b> someone else
<!--Dotted Line-->
<span class="styDotLn" style="float:none;padding-left:.5mm;padding-right:.5mm;">.........</span>
</div>
<!-- ************************************* -->
</span>
<span style="float:right;">
<div class="styLNLeftNumBox" style="height:4.7mm;width:7mm;padding-top:0mm;text-align:center;border-style:solid;border-right-width:1px;border-left-width:1px;border-top-width:0px;border-bottom-width:1px;border-color:black;">
6a</div>
<div class="styLNAmountBox" style="width:31mm;font-size:7.5pt;border-left-width:0px;border-bottom-width:1px;border-right-width:0px;height:4.7mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form8888Data/SavingsBondPurchaseInfoGrp[$bondpos + 1]/BondPurchasesAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 6b -->
<div style="width:187mm;font-size9pt;font-family:Arial">
<div class="styLNLeftNumBox" style="width:7.5mm;height:4mm;padding-top:0mm;padding-right:2.8mm;text-align:right;">b</div>
<div class="styLNDesc" style="width:139.5mm;padding-top:0mm;padding-bottom:0mm;">Enter the owner's name (First then Last) for the bond registration
<span class="styNameForBondBox" style="text-align:left;padding-left:2mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/SavingsBondPurchaseInfoGrp[$bondpos + 1]/BondOwnerNm"/>
<xsl:with-param name="BackupName">IRS1040BondOwnerName2</xsl:with-param>
</xsl:call-template>
</span>
<span style="width:4mm;padding-top:.5mm;padding-bottom:.5mm;float:left; clear: none;"/>
<span style="height:.5mm;padding-bottom:1mm;float:left;clear:none;"/>
</div>
</div>
<!-- end line 6b -->
<!-- line 6c -->
<div style="width:187mm;font-size:8.5pt;height:3mm;font-family:Arial">
<div class="styLNLeftNumBox" style="width:7.5mm;padding-right:2.8mm;text-align:right;">c </div>
<div class="styLNDesc" style="width:170mm;">
<label for="beneficiaryInd2">If you would like to add a co-owner or beneficiary, enter the name here (First then Last). If beneficiary, also check here</label>
<img src="{$ImagePath}/8888_Bullet_Sm.gif" alt="Bullet"/>
<span style="width:.5mm;"/>
<input type="checkbox" title="beneficiaryInd2" id="beneficiaryInd2" alt="alt" class="styCkbox" style="height:4mm;width:4mm;">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8888Data/SavingsBondPurchaseInfoGrp[$bondpos + 1]/BeneficiaryInd"/>
<!--<xsl:with-param name="BackupName">IRS8888BeneficiaryIndicator2</xsl:with-param>-->
</xsl:call-template>
</input>
</div>
</div>
<div style="width:187mm;font-size:8.5pt;height:8mm;padding-top:0mm;" class="styBB">
<div class="styLNLeftNumBox" style="width:7.5mm;padding-right:3mm;font-size:8pt;text-align:right;"/>
<span class="styNameForBondBox" style="text-align:left;padding-left:2mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8888Data/SavingsBondPurchaseInfoGrp[$bondpos + 1]/BondCoOwnerOrBeneficiaryNm"/>
<xsl:with-param name="BackupName">IRS1040BondCoOwnerOrBeneficiaryName2</xsl:with-param>
</xsl:call-template>
</span>
</div>
</xsl:if>
</div>
<!-- End of 6c -->
<!-- End of line 6a - 6c -->
<!--End of Part II -->
<!-- Part III -->
<div style="width:187mm;font-size:9.5pt;padding-bottom:.5mm;font-family:Arial;" class="styBB">
<div class="styPartName" style="height:4mm;font-family:Arial;font-size:9.5pt;">Part III</div>
<div class="styPartDesc" style="font-weight:normal;font-size:9.5pt;">
<b>Paper Check</b>
<br/>
<span style="font-size:8pt;">Complete this part if you want a portion of your refund to be sent to you as a check.</span>
</div>
</div>
<!-- Line 7 -->
<div style="width:187mm;font-size:8.5pt;height:4.5mm;padding-top:0mm;font-family:Arial;" class="styBB">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:7.5mm;padding-right:3mm">7</div>
<div class="styLNDesc" style="width:140.2mm;">Amount to be refunded by check
<!--Dotted Line-->
<span class="styDotLn" style="float:none;padding-left:2.5mm;padding-right:.5mm;">.....................</span>
</div>
</span>
<span style="float:right;">
<div class="styLNLeftNumBox" style="height:4.5mm;width:7mm;padding-top:.5mm;border-style:solid;text-align:center; border-right-width:1px;border-left-width:1px;border-top-width:0px;border-bottom-width:0px;border-color:black;font-size:8.5pt;">7</div>
<div class="styIRS8888ColBox" style="height:4.5mm;font-size:7.5pt;border-left:0px;border-right-width:0px;padding-top:1mm;border-bottom:0mm;width:32mm;text-align:right;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form8888Data/RefundByCheckAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- end of line 7 -->
<!-- End of Part III -->
<!-- Part IV -->
<div style="width:187mm;font-family:Arial;" class="styBB">
<div class="styPartName" style="height:4mm;font-family:Arial;font-size:9.5pt;">Part IV</div>
<div class="styPartDesc" style="font-weight:normal;font-size:9.5pt;font-family:Arial;">
<b>Total Allocation of Refund</b>
<br/>
</div>
</div>
<!-- Line 8 -->
<div class="styBB" style="width:187mm;font-family:Arial;font-size:8.5pt;height:7mm;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:7.5mm;height:3.5mm;padding-top:1mm;">8</div>
<div class="styLNDesc" style="width:140.2mm;height:3.5mm;padding-top:1mm;padding-bottom:0mm;">
Add lines 1a, 2a, 3a, 4, 5a, 6a, and 7. The total must equal the refund amount shown on your tax<br/> return
<span class="styDotLn" style="float:none;padding-right:.5mm;padding-left:1.5mm;padding-bottom:0mm;">............................</span>
</div>
</span>
<span style="float:right;">
<div class="styIRS8888ColBoxGrey" style="height:8mm;width:7mm;padding-top:5mm;border-style:solid;border-right-width:1px;border-left-width:1px;border-top-width:0px;
border-bottom-width:0px;border-color:black;">
<span style="width:6.5mm;height:2.3mm;text-align:center;padding-top:0mm;background-color:white;padding-left:1mm;">8</span>
</div>
<div class="styGenericDiv" style="width:32mm;height:8mm;font-size:7.5pt;padding-top:5mm;text-align:right;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;padding-bottom:0mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form8888Data/TotalAllocationOfRefundAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- End line 8 -->
<!-- End part IV-->
<!-- End signature part -->
<div style="width:187mm;font-size:6.5pt;padding-top:1mm;padding-bottom:4mm;">
<div style="width:114mm;font-weight:bold;float:left;clear:none;font-size:7.5pt;">For Paperwork Reduction Act Notice, see your tax return instructions.</div>
<div style="width:30mm;float:left;clear:none;">Cat. No. 21858A</div>
<div style="width:30mm;text-align:right;font-size:6pt;float:right;clear:none;">Form <span class="styBoldText" style="font-size:8pt;">8888 </span> (2012)</div>
</div>
<div class="pageEnd" style="width:187mm;"/>
<!-- END of Page 1 -->
<!-- BEGIN Left Over Table -->
<!-- Additonal Data Title Bar and Button -->
<div class="styLeftOverTitleLine" id="LeftoverData">
<div class="styLeftOverTitle">
Additional Data
</div>
<div class="styLeftOverButtonContainer">
<input class="styLeftoverTableBtn" type="button" TabIndex="1" value="Return to Form" onclick="javascript:returnToWriteInImage();"/>
</div>
</div>
<!-- Additional Data Table -->
<table class="styLeftOverTbl">
<xsl:call-template name="PopulateCommonLeftover">
<xsl:with-param name="TargetNode" select="$Form8888Data"/>
<xsl:with-param name="DescWidth" select="100"/>
</xsl:call-template>
</table>
</form>
</body>
</html>
</xsl:template>
</xsl:stylesheet>