-
Notifications
You must be signed in to change notification settings - Fork 4
/
Answer.html
1272 lines (715 loc) · 30.2 KB
/
Answer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
layout: default
title: Answer
---
<div class="row">
<div class="small-12 columns "><h1 class="main-header-stages">Instructions On How To Submit An Answer "Pro Se" (Without An Attorney)</h1></div>
</div>
<div class="row">
<div class="small-12 columns">
</div>
</div>
<div class="row">
<div class="small-12 columns "><h2 class="main-header-stages"> </h2></div>
</div>
<div class="row">
<div class="small-12 columns">
<dl class="accordion" data-accordion>
<dd class="accordian-stages">
<a href="#panel1"><h2>What is An Answer?</h2></a>
<div id="panel1" class="content">
<div class="row">
<div class="small-12 columns">
<p>An Answer is a written response to the
Complaint, where you list any and all of
your defenses to the foreclosure, as well as
any counterclaims you may have against
the Bank. This section of the guidebook will
explain step-by-step how to write and file an
Answer if you can’t find an attorney to help
you </p>
<a href="#" data-reveal-id="firstModal" class="button tiny">Settlement conference</a>
<div id="firstModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/Sample_Settlement_Conference_Letter.png" alt="settlement Conference">
</div>
</div>
</div>
</div>
</dd>
<br class="clear">
<dd class="accordian-stages">
<a href="#panel2"><h2>Should I file an Answer?</h2></a>
<div id="panel2" class="content">
<div class="row">
<div class="small-12 columns">
<p>If you have received a Summons and
Complaint, you have the right to serve and
file an Answer to the Complaint. This will help
you preserve your legal rights and guarantee
that you receive notice of all future actions
in the court case, including the sale of your
home. If you don’t file an Answer, the judge
may enter a “default” judgment against you
(which means you did not submit an Answer
and therefore are not contesting the Bank’s
legal right to foreclosure). In addition, if
you don’t fi le an Answer you will probably
lose your right to raise any defenses to the
foreclosure down the road.</p>
<p>Sometimes, however, it is not helpful to file an Answer. If you are unable to find an attorney
to help, you will have to make that choice.
There are two possible reasons why you may
NOT want to file an Answer.</p>
<ul>
<li>You may not have any legal defenses or claims to the foreclosure</li>
<li>If you file an Answer and are unsuccessful in convincing the judge that you are correct in your claims, you will be responsible for the leaga fees that the Bank must pay to successfully pursue the foreclosure. This willl increase the amount of money you owe the Bank. This increase could ultimately make it harder for you to obtain a loan modifi cation or some other type of workout.</li>
</ul>
<p>of money you owe the Bank. This increase
could ultimately make it harder for you to
obtain a loan modifi cation or some other
type of workout.</p>
<div class="stages-emphasis-warning-assurance"><p>We Highly recommend that you file either an Answer or a Notice of Appearance early in the foreclosure proceeding.</p></div>
<div class="stages-emphasis-warning-assurance"><p>This is a general guide through
the foreclosure process. Each person’s situation is unique, and therefore consultation with an attorney is recommended,if possible.</p></div>
</div>
</div>
</div>
</dd>
<br class="clear">
<dd class="accordian-stages">
<a href="#panel3"><h2>When should you file an Answer?</h2></a>
<div id="panel3" class="content">
<div class="row">
<div class="small-12 columns">
<li>If you were served personally (the court
papers were handed to you in person),
you have 20 days from the date of service
(the date you were handed the papers) to
file your Answer.</li>
<li>• If you were served by mail (you didn’t
receive a copy personally but instead
received the foreclosure summons only
by mail), you have 30 days to file your
Answer.</li>
<p>If it has been more than 30 days since you
were served, you may still be able to file an
Answer but you will need to ask permission
from the Court. One way to approach this
situation is to draft the Answer, try to fi le
it with the Court and serve it on the Bank’s
attorney. The Bank’s attorney may try to claim
that your Answer is too late to accept, but
the Court also may decide to allow you to fi le
your Answer, so it is worth trying.</p>
</div>
</div>
</div>
</dd>
<br class="clear">
<dd class="accordian-stages">
<a href="#panel4"><h2>Where can you find the information you need to respond?</h2></a>
<div id="panel4" class="content">
<div class="row">
<div class="small-12 columns">
<p>The information you need to fill in your
Answer, comes from the Summons and
Complaint you received, your mortgage
papers, and your personal experience.
</p>
<div class="stages-emphasis-warning-assurance"><p>Do not wait until the last day to file an Answer- writing and filing an Answer takes time!</p>
</div>
<a href="#" data-reveal-id="fourthModal" class="button tiny">Sample Summons</a>
<div id="fourthModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/Sample_Summons.png" alt="sample summons">
</div>
</div>
</div>
</div>
</dd>
<br class="clear">
<dd class="accordian-stages">
<a href="#panel5"> <h2>FILLING OUT THE ANSWER</h2> </a>
<div id="panel5" class="content">
<div class="row">
<div class="small-12 columns">
<p><em>STEP 1: FILL OUT THE "CAPTION" OF THE ANSWER</em>-As shown in the sample Answer below, fill in the top part of the Notice of Apperance form(known as the "Caption") by copying the necessary information from the Summons or Complaint.
</p><p>STEP 2: CHECK "General DENIAL" Box.</p>
<p><em>STEP 3: CHECK OFF AND EXPLAIN YOUR DEFENSES</em>-Think carefully about whether any
of the following legal defenses may apply to
your situation. If you fail to include some legal
defenses in your Answer, you may lose the right to
raise them later. However, you should not check
off a defense unless you truly believe it applies to
your situation. If you check off defenses that do
not apply to you, you will likely increase the Bank’s
legal fees, which may prohibit you from ultimately
resolving your delinquency with the Bank.</p>
<a href="#" data-reveal-id="fifthModal" class="button tiny">Filling out answer</a>
<div id="fifthModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/Filling_Out_Answer(1).png" alt="Filling out answer">
</div>
<li><strong> Lack of Standing to Sue:</strong> </li>
<p>A Foreclosure Plaintiff (the Bank) must prove
that it has the right to foreclose, known as
“standing”, by showing that it is the owner
of the Note and Mortgage when it starts the
lawsuit. You should check this box if you check
off EITHER of the two boxes below related to
standing. If you don’t include this claim, you
may not be able to raise it later. So, if you believe
that the Plaintiff may not own your Note and
Mortgage, raise this defense to be safe.</p>
<li><strong>Plaintiff does not have standing
to sue because it was not the legal
owner of the Note and/or Mortgage
at the time it commenced this
foreclosure lawsuit.</strong> </li>
<p>Check this first box if you have checked at
your county clerk’s office and discovered that
the Plaintiff listed on your Summons and
Complaint do not match the party that is
supposed to have ownership rights according
to the publicly filed documents in the Clerk’s
office. (Some counties are available online,
while some you must visit in person.)</p>
<li><strong>I have no knowledge that the
plaintiff was assigned my debt or
there was no Affirmative Allegation
of Standing (NY Real Property
Actions and Proceedings Law §
1302, high-cost and subprime home
loans): Plaintiff failed to allege in
the Foreclosure Complaint that it is
the legal owner and holder of the
Note and/or Mortgage or has the
authority to foreclose.</strong></li>
<p>Check this second box if you believe that the
Bank does not have standing because the
Bank did not state they had standing in their
Complaint.</p>
<p><strong>Under a 2008 New York State Law,
foreclosure Plaintiffs are required to follow additional rules for certain types of
mortgages called “high-cost,” “subprime,”
and “non-traditional” mortgages. The
simplest way to know whether you have
a high-cost, subprime, or non-traditional
mortgage is that you should have received
written notice during the loan closing or foreclosure</strong></p>
<li><strong>Improper Service of the Summons and
Complaint</strong> (NY Civil Practice Law and Rules
Section 308) because I was not served in
any of the following three methods.</li><ol>
<li>Handed to me in person; OR</li>
<li>Left at my home or business with
a “person of suitable age and
discretion” with another copy
mailed within 20 days to</li>
<li>Attached to my home or business
door, with another copy mailed
within 20 days to my home or
business.</strong></li>
</ol>
<p>If you were not served with a copy of the
Foreclosure Summons and Complaint in any of
the three described ways, check off this box.</p>
<li><strong>I did not receive the notice of default
required by my mortgage agreement, and
the mailing of this notice is a condition
precedent to the foreclosure.</strong></li>
<p>For most foreclosures the Bank is required to send
an Acceleration Letter (also known as a Demand
Letter), which is to be sent after you have stopped
paying and states that the whole amount of your
mortgage is due immediately.
</p>
<p>You should use this defense if you never received
an Acceleration Letter from your Bank.</p>
<a href="#" data-reveal-id="fifthModal" class="button tiny">Filling out an Answer part 2</a>
<div id="fifthModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/Filling_Out_Answer(2).png" alt="filling out answer 2">
</div>
</div>
</div>
</div>
</dd>
<br class="clear">
<dd class="accordian-stages">
<a href="#panel6"> <h2>90-Day Pre-Foreclosure Notices</h2> </a>
<div id="panel6" class="content">
<div class="row">
<div class="small-12 columns">
<ul><ul><li><strong>90-Day Pre-Foreclosure Notices (NY
Real Property Actions and Proceedings
Law § 1304) were inadequate because
(check one or both if applicable):<li><ul>
<li>Two coppies not delivered; Or</li>
<li>Foreclosure lawsuit filled within 90 days of Pre-Foreclosure Notices</strong></li>
</ul>
<p>For foreclosure lawsuits filed in New York State
after September 1, 2008 on one-to-four-family
owner-occupied homes, the Bank is required
to send you a Pre-Foreclosure Notice by first-
class mail and by registered or certified mail
that states: “YOU COULD LOSE YOUR HOME”
and list the number of days the mortgage
payments are late and the amount of money
required to catch up. These Pre-Foreclosure
Notices must be given at least 90 days before
the foreclosure Complaint is filed. </p>
<p>You should raise this defense if you did not
receive both copies of this Pre-Foreclosure
Notice, or if the foreclosure lawsuit was filed
before the end of 90 days after you received
the Pre-Foreclosure Notices. Check off the box
that applies to your situation.
</p>
<p>A sample 90-Day Pre-Foreclosure Notice can
be found on page 8 of this guidebook.
</p>
<strong> <li><p> I did not receive the notice titled “Help
for Homeowners in Foreclosure” that
was supposed to be served with the
Foreclosure Summons and Complaint
on a colored sheet of paper (NY Real
Property Actions and Proceedings Law
Section 1303) (amended 2008).</p></li></strong>
<p>For foreclosure lawsuits filed after September
1, 2008 on one-to-four family owner-
occupied homes, the Bank is required to
include a Notice of “Help for Homeowners in
Foreclosure” with the Foreclosure Summons
and Complaint. This notice must be printed in
bold, large type and on colored paper.</p>
<a href="#" data-reveal-id="sixthModal" class="button tiny"> 90-Day Pre-Foreclosure Notices part 1</a>
<div id="sixthModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/Sample_90-Day_Pre_Foreclosure_Notice(1).png" alt="Sample 90 day Notice part 1">
</div>
<strong><li><p>An active service member is an owner
of the property and is on the mortgage
and qualifies for Active Military Service
protections under state or local law
(Federal Service Members Civil Relief Act,
50 App. U.S.C. 501 et seq.; and New York
State Soldiers’ and Sailors’ Civil Relief Act,
NY Military Law Section 300 et seq.)</p></li></strong>
<p>Active-duty members of the armed forces,
National Guard and reservists, and their
dependents and co-debtors have special rights
under federal and New York State laws to interest
rate reductions on mortgages and other debts,
to request a stay of foreclosure, and to avoid a tax
foreclosure sale. </p>
<p>Homeowners who are serving active military
duty and are facing foreclosure should advise
their mortgage lender, servicer, and the court in
writing, and immediately seek assistance from
a Judge Advocate General (JAG) Corps or other
attorney.</p>
<strong><li><p>Homeowner’s Mental Disability or
Incompetence (NY Civil Practice Law and
Rules Section 1202)</p></li></strong>
<p>If you are working with a homeowner whom you
believe cannot defend himself or herself due
to limited mental competence, you should ask
the court to appoint a “Guardian Ad Litem” to
represent the homeowner’s interests during the
lawsuit.</p>
<p>In addition, if you believe that the homeowner
was not mentally competent at the time he
or she signed the mortgage loan, you should
describe in detail the timing and evidence of the
homeowner’s incompetence, and immediately
seek assistance from an attorney.</p>
<a href="#" data-reveal-id="sixthModal" class="button tiny"> 90-Day Pre-Foreclosure Notices part 2</a>
<div id="sixthModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/Sample_90-Day_Pre_Foreclosure_Notice(2).png" alt="Sample 90 day Notice part 2">
</div>
<strong><ul><li>I am eligible for the Home Affordable
Modification Program (“HAMP”)
because it meets the following
qualifiers: (1) My loan is secured by a
one-to-four unit property, co-op, or
condo; (2) This is my principal residence;
(3) The loan was originated on or before
January 1, 2009; and (4) I cannot afford
my monthly mortgage payments. The
loan servicer failed to comply with
HAMP for the following reason(s) (check
one or both if applicable):</li></ul>
<li>Chapter II, Section 3 of the MHA
Handbook prohibits the
servicer from referring my
loan to foreclosure until I have
been evaluated for HAMP or
determined ineligible for the
program. I did not fail a HAMP
trial period plan, I have responded
to all reasonable requests for
information, and I have not
refused help under the program.</li>
<li>Other<li>
<p><strong>reason: ____________ </strong></p>
</strong>
<p>The federal Home Affordable Modification
Program (“HAMP”) was designed to help
homeowners that are facing trouble with their
mortgages, and participating banks must
follow Treasury guidelines in implementing
the program. These guidelines ensure that
homeowners are reviewed fairly to see if they
qualify for the program. </p>
<p>You should use this defense if you feel that
your Bank did not review you for the HAMP
program at all or you were incorrectly rejected
from the HAMP program. If there is another
HAMP-related issue you are facing, check the
“Other” box and explain the issue precisely.</p>
<a href="#" data-reveal-id="sixthModal" class="button tiny"> 90-Day Pre-Foreclosure Notices part 3</a>
<div id="sixthModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/Sample_90-Day_Pre_Foreclosure_Notice(3).png" alt="Sample 90 day Notice part 3">
</div>
<strong><li>My loan is insured by the Federal
Housing Administration (“FHA”).
The loan servicer has not complied
with regulations of the Department
of Housing and Urban Development
requiring pre-foreclosure and loss
mitigation evaluation for FHA-insured
mortgage loans. Compliance with these
regulations is a condition precedent to
foreclosure. Further, failure to comply
with these rules gives rise to equitable
defenses to this action.</li><strong>
<p>Service requirements for mortgages holding
FHA guarantees and insurance require that
every reasonable effort has been made to arrive
at some other solution before the filing of a
foreclosure. </p>
<p>You should raise this defense if you have an
FHA loan and feel your servicer did NOT make
reasonable efforts to work with you before filing
the foreclosure. </p>
<a href="#" data-reveal-id="sixthModal" class="button tiny"> 90-Day Pre-Foreclosure Notices part 4</a>
<div id="sixthModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/Sample_90-Day_Pre_Foreclosure_Notice(4).png" alt="Sample 90 day Notice part 4">
</div>
</div>
</div>
</div>
</dd>
<br class="clear">
<dd class="accordian-stages">
<a href="#panel7"> <h2>My Mortgage</h2> </a>
<div id="panel7" class="content">
<div class="row">
<div class="small-12 columns">
<strong><li>My mortgage is guaranteed by the
Veterans Administration (“VA”)
pursuant to Title 38 of the United
States Code. The loan servicer has not
complied with the regulations requiring
that the servicer extend all reasonable
forbearance options. Compliance
with these regulations is a condition
precedent to foreclose. Further, failure
to comply with these rules gives rise to
equitable defenses to this action.</li></strong>
<p>Service requirements for mortgages
holding Veteran Administration guarantees
and insurance require the mortgagee to
demonstrate a proper ability to service loans
adequately. The VA Lender’s Handbook states
that holders of VA guarantees or insurance
are not expected to start a foreclosure action
until every reasonable effort has been made to
arrive at some other solution. </p>
<p>You should raise this defense if you have a
VA loan and feel your servicer did NOT make
reasonable efforts to work with you prior to
filing the foreclosure.</p>
<a href="#" data-reveal-id="seventhModal" class="button tiny"> My Mortage part 1</a>
<div id="seventhModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/my_mortgage(1).png" alt="my mortgage part 1">
</div>
<strong><li>have tried to tender payments in the
amount of $___ on ____ which would have
paid the principal, interest, and fees I owed
at the time in full, but the lender refused
to accept the payment and proceeded to
foreclosure against me wrongfully.</li></strong>
<p>In a foreclosure proceeding, a valid tender of
an amount that is sufficient to fully eliminate all
defaults prior to the bank or servicer’s option to
accelerate is a total defense. </p>
<p>You should raise this defense if you feel that you
paid all arrearages to your Bank prior to them
sending you an Acceleration Letter, which is the
letter you received prior to the foreclosure being
filed that stated that the whole amount of your
Mortgage is due immediately. Be sure to fill in the
blanks with the amount you paid and the date
you paid it.</p>
<strong><li>Partial or Full Payment: I have made
payments in the amount of $_____ which
have not been properly credited and
are not reflected in the Summons and
Complaint:</li></strong>
<p>You have paid the mortgage payments, or some
portion of the mortgage payments, that the
Plaintiff claims you owe.</p>>
<p>You believe that the amount of debt is incorrect
and that you do not owe what the mortgage
company says you owe.</p>
<a href="#" data-reveal-id="seventhModal" class="button tiny"> My Mortage part 2</a>
<div id="seventhModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/my_mortgage(2).png" alt="my mortgage part 2">
</div>
<strong><ul><li>On ____ (date of loan origination),
Mr./Ms. ____, the ______ made
statements to me to intentionally
convince me to enter the mortgage and
note at issue in this foreclosure action.
I relied upon those statements and I
was fraudulently induced to sign the
mortgage and note. Mr./Ms.__________
told me that: </li>
<li> I would receive a fixed rate loan, but
instead I received an adjustable rate
loan. </li>
<li> My mortgage term would be no
more____ years, but instead I received
a____ year loan. </li>
<li> My total monthly payment would
include principal, interest, property
taxes and hazard insurance, but instead
my monthly payment did not include
property taxes and hazard insurance. </li>
<li> My monthly payment would not be
higher than $______, but instead my
monthly payment was $______. </li>
<li>My loan amount would not exceed
$______, but instead my loan amount
was higher at $______. </li>
<li>Other __________________________</li></ul>
<p>I was injured by the above fraudulent
statements because I paid more for my
mortgage than I believed I could afford and
ultimately fell into foreclosure as a result of
the higher cost of the mortgage.</p></strong>
<p>For a fraud to have occurred there MUST have
been six things that happened:</p>
<ol>
<li> There was a misrepresentation of fact by
another party (frequently a mortgage
broker or a representative from the bank)
to you;</li>
<li> The statement was untrue; </li>
<li> The speaker knew the statement was
untrue; </li>
<li>The speaker was trying to deceive you; </li>
<li> You relied on the untrue statement; AND </li>
<li> You were injured (injured can mean
financially injured) by the untrue
statement.</li>
</ol>
<a href="#" data-reveal-id="seventhModal" class="button tiny"> My Mortage part 3</a>
<div id="seventhModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/my_mortgage(3)" alt="my mortgage part 3">
</div>
<strong><p>You should use this defense if all six of these
events happened to you. If you feel that you
were deceived prior to closing on your loan,
you believed those deceptions, and as a
result you were more likely to sign your loan
documents, you should fill in this section.</p></strong>
<p>Fraud is a defense that must be pleaded with
particularity – that is to say that you must be
VERY specific with your allegations. Therefore,
if you are choosing fraud as a defense you
must list exactly how the fraud occurred. You
will need to check any and all of the above
boxes that you feel accurately state the specific
fraudulent behavior. If there are other fraudulent
statements made to you other than the ones in
the boxes below, check the “Other” box and list
them out specifically in the lines provided.</p>
<a href="#" data-reveal-id="seventhModal" class="button tiny"> My Mortage part 4</a>
<div id="seventhModal" class="reveal-modal" data-reveal>
<a class="close-reveal-modal">×</a>
<img src="img/my_mortgage(4).png" alt="my mortgage part 4">
</div>
</div>
</div>
</div>
</dd>
<br class="clear">
<dd class="accordian-stages">
<a href="#panel8"> <h2>Other defenses or counterclaims</h2> </a>
<div id="panel8" class="content">
<div class="row">
<div class="small-12 columns">
<strong><p>Other Defenses or Counterclaims _________________________</p></strong>
<p>If you have any other claims you would like to