forked from SUNY-Albany-CCI-INF362/whatev3r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcounselingcenterstable.html
1507 lines (1494 loc) · 72 KB
/
counselingcenterstable.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Empire Justice Foreclosure Guide</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Team Whatev3r">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/app.css" />
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<div class="row">
<header class="small-12 columns" ><h1><a href="/">Empire Justice Center Foreclosure Guide</a></h1></header>
</div>
<div class = "container">
<!--Intro Text-->
<div class="row">
<br>
<div class="small-12 columns">
<p>This guide will aid you to better understand the Foreclosure process so that you will have the power to fight for your home.</p>
</div>
</div>
<!--Intro Text-->
<!--Navagation start-->
<div class="row">
<div class="small-6 columns nav-button"><a href="/"><h2>Home</h2></a></div>
<div class="small-6 columns nav-button"><a href="/forms"><h2>Forms</h2></a></div>
</div>
<div class="row">
<div class="small-6 columns nav-button"><a href="/generaltimeline"><h2>General Timeline</h2></a></div>
<div class="small-6 columns nav-button"><a href="/mytimeline"><h2>My Timeline</h2></a></div>
</div>
<!--Navagation end-->
</div>
<!--Temp Table-->
<h1>New York State Non-Profit Housing Counseling Agencies Providing Services to Homeowners in Default and Foreclosure - <strong>Statewide Listing by County</strong></h1>
<h4>Compiled by the Empire Justice Center (Updated January 2014)</h4>
<table class="agency_table tr">
<tr>
<th class="w10">COUNTY</th>
<th class="w25">AGENCY</th>
<th class="w25">ADDRESS</th>
<th class="w20">CONTACT INFO</th>
<th class="w20">NOTES</th>
</tr>
<tr>
<th rowspan="5" class="county">Albany</th>
<td class="agency">Affordable Housing Partnership</td>
<td class="address">255 Orange St.<br />
Albany, NY 12210</td>
<td class="contact_info">518-434-1730</td>
<td class="notes">HOPP<br />Also serves surrounding areas</td>
</tr>
<tr>
<td class="agency">Albany County Rural Housing Alliance</td>
<td class="address"><p>Faith Plaza, Rt 9W<br />
Ravena, NY 12143</p>
<p>OR</p>
<p>24 Martin Road, Voorheesville, NY 12186 </p></td>
<td class="contact_info"><p>518-756-3656</p>
<p>OR</p>
<p>518-765-2425 (x2589)</p></td>
<td class="notes">HOPP<br />Also serves surrounding areas</td>
</tr>
<tr>
<td class="agency">United Tenants of Albany</td>
<td class="address">33 Clinton Ave.<br />Albany, NY 12207</td>
<td class="contact_info">518-436-8997</td>
<td class="notes">HOPP<br />For tenants whose buildings are in the process of foreclosure or have been foreclosed on</td>
</tr>
<tr>
<td class="agency">Clearpoint Financial Solutions</td>
<td class="address">2 Computer Drive West, Albany, NY 12205</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes">Formerly known as Consumer Credit Counseling Service of Central NY</td>
</tr>
<tr>
<td class="agency">NYS Office For People With Developmental Disabilities (OPWDD)</td>
<td class="address">44 Holland Ave. Albany, NY 12229</td>
<td class="contact_info">518-473-1973</td>
<td class="notes">Serving all NYS residents with developmental disabilities and their families</td>
</tr>
<tr>
<th rowspan="3" class="county">Allegany</th>
<td class="agency">ACCORD</td>
<td class="address">84 Schuyler St.<br />Belmont, NY 14813</td>
<td class="contact_info">585-268-7605</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Belmont Housing Resources</td>
<td class="address">1195 Main Street, Buffalo, NY 14209</td>
<td class="contact_info">716-884-7791</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Neighborhood Housing Services of Buffalo</td>
<td class="address">937 South Park Ave. Buffalo, NY 14220</td>
<td class="contact_info">716-823-3630</td>
<td class="notes">Also serving surrounding counties</td>
</tr>
<tr>
<th rowspan="7" class="county">Bronx</th>
<td class="agency">Neighborhood Housing Services- South Bronx</td>
<td class="address">848 Concourse Village West,Bronx, NY 10451</td>
<td class="contact_info">718-992-5979</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">West Bronx Housing and Neighborhood Resource Center</td>
<td class="address">3176 Bainbridge, Bronx, NY 10467</td>
<td class="contact_info">718-798-0929</td>
<td class="notes">HOPP<br />Spanish speaking staff available, Russian interpreter available</td>
</tr>
<tr>
<td class="agency">Neighborhood Housing Services- North Bronx</td>
<td class="address">1451 East Gun Hill Rd.<br />Bronx, NY 10469</td>
<td class="contact_info">718-881-1180</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Parodneck Foundation</td>
<td class="address">121 6th Ave., Suite 501 <br />New York, NY 10013</td>
<td class="contact_info">212-431-9700 ext 391</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">MHANY Management, Inc.</td>
<td class="address">2-4 Nevins St.<br />Brooklyn, NY 11217</td>
<td class="contact_info">718-246-8080 ext 203</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Grow Brooklyn, Inc.</td>
<td class="address">1474 Myrtle Ave.<br />Brooklyn, NY 11237</td>
<td class="contact_info">718-418-8232 ext. 206</td>
<td class="notes">HOPP<br />Spanish and Bengali speaking staff available</td>
</tr>
<tr>
<td class="agency">NYC Commission on Human Rights</td>
<td class="address">1932 Arthur Avenue, Room 203A<br /> Bronx, NY 10457</td>
<td class="contact_info"><p>718-579-6728</p>
<p>OR</p>
<p>718-579-6900</p></td>
<td class="notes">Spanish speaking staff available</td>
</tr>
<tr>
<th rowspan="2" class="county">Broome</th>
<td class="agency">Metro Interfaith Housing Council</td>
<td class="address">21 New St.<br />Binghamton, NY 13903</td>
<td class="contact_info">607-772-6766</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Service of the Central Southern Tier</td>
<td class="address">The Metro Center, 49 Court St.<br />Binghamton, NY 13901</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="3" class="county">Cattaraugus</th>
<td class="agency">Belmont Housing Resources for Western NY</td>
<td class="address">1195 Main St.<br />Buffalo, NY 14209</td>
<td class="contact_info">716-884-7791</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Neighborhood Housing Services of South Buffalo</td>
<td class="address">1937 South Park Ave.<br />Buffalo, NY 14220</td>
<td class="contact_info">716-823-3630</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">NeighborWorks Home Resources</td>
<td class="address">209 North Union St.<br />Olean, NY 14760 </td>
<td class="contact_info">716-373-4100</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="3" class="county">Cayuga</th>
<td class="agency">Home Headquarters, Inc.</td>
<td class="address">990 James St., Suite 1<br />Syracuse NY 13203</td>
<td class="contact_info">315-474-1939</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Clearpoint Financial Solutions</td>
<td class="address">5794 Widewaters Parkway, Syracuse, NY 13214</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes">Formerly known as Consumer Credit Counseling Service of Central NY</td>
</tr>
<tr>
<td class="agency">Alternatives FCU</td>
<td class="address">125 Fulton St.<br />Ithaca, NY 14850</td>
<td class="contact_info">607-216-3445</td>
<td class="notes">Online service available only to members of AFCU</td>
</tr>
<tr>
<th rowspan="4" class="county">Chautauqua</th>
<td class="agency">Belmont Housing Resources for Western NY</td>
<td class="address">1195 Main St.<br />Buffalo, NY 14209</td>
<td class="contact_info">716-884-7791</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency"> The Housing Council</td>
<td class="address">75 College Ave., 4th Floor<br />Rochester, NY 14607</td>
<td class="contact_info">585-546-3700 ext. 3015</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Chautauqua Home Rehabilitation and Improvement Corp. (CHRIC)</td>
<td class="address">2 Academy St.<br />Mayville, NY 14757</td>
<td class="contact_info">716-753-4650</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Chautauqua Opportunities</td>
<td class="address">402 Chandler<br />Dunkirk, NY 14048</td>
<td class="contact_info">716-661-9430</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="3" class="county">Chemung</th>
<td class="agency">Arbor Housing and Development</td>
<td class="address">16 W. William St.<br />Bath, NY 14810</td>
<td class="contact_info">607-776-7664</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Catholic Charities of Chemung</td>
<td class="address">215 East Church St., Suite 101<br />Elmira, NY 14901</td>
<td class="contact_info">607-734-9784</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Alternatives FCU</td>
<td class="address">125 Fulton St.<br />Ithaca, NY 14850</td>
<td class="contact_info">607-216-3445</td>
<td class="notes">Online service available only to members of AFCU</td>
</tr>
<tr>
<th rowspan="2" class="county">Chenango</th>
<td class="agency">Metro Interfaith Housing Council</td>
<td class="address">21 New St.<br />Binghamton, NY 13903</td>
<td class="contact_info">607-772-2766</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Clearpoint Financial Solutions</td>
<td class="address">The Metro Center, 49 Court St.<br />Binghamton, NY 13901</td>
<td class="contact_info">877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="2" class="county">Clinton</th>
<td class="agency">Friends of the North Country</td>
<td class="address">1 Mill St.<br />Keeseville, NY 12944</td>
<td class="contact_info">518-834-9606</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Housing Assistance Program of Essex County (HAPEC)</td>
<td class="address">103 Hand Ave.<br />Elizabethtown, NY 12932</td>
<td class="contact_info">518-873-6888</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th class="county">Columbia</th>
<td class="agency">Housing Resources of Columbia County, Inc.</td>
<td class="address">252 Columbia St.<br />Hudson, NY 12534</td>
<td class="contact_info">518-822-0707</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="5" class="county">Cortland</th>
<td class="agency">Home Headquarters, Inc.</td>
<td class="address">990 James St., Suite 1<br />Syracuse NY 13203</td>
<td class="contact_info">315-474-1939</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Cortland Housing Assistance Council, Inc.</td>
<td class="address">36 Taylor St.<br />Cortland, NY 13045</td>
<td class="contact_info">607-753-8271 ext. 15</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Credit Counseling Service of the Central Southern Tier</td>
<td class="address">The Metro Center, 49 Court St.<br />Binghamton, NY 13901</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Alternatives, FCU</td>
<td class="address">125 Fulton St.<br />Ithaca, NY 14850</td>
<td class="contact_info">607-216-3445</td>
<td class="notes">Online service available only to members of AFCU</td>
</tr>
<tr>
<td class="agency">Metro Interfaith Housing Council</td>
<td class="address">21 New St.<br />Binghamton, NY 13903</td>
<td class="contact_info">607-772-6766</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="2 class="county"">Delaware</th>
<td class="agency">Delaware Opportunities, Inc.</td>
<td class="address">35430 State Hgwy. 10 Hamden, NY 13782</td>
<td class="contact_info">607-746-1650</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Clearpoint Financial Solutions</td>
<td class="address">The Metro Center, 49 Court St.<br />Binghamton, NY 13901</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th class="county">Dutchess</th>
<td class="agency">Hudson River Housing</td>
<td class="address">291 Mill St Poughkeepsie, NY 12601</td>
<td class="contact_info">845-454-9288</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="7" class="county">Erie</th>
<td class="agency">Belmont Housing Resources</td>
<td class="address">1195 Main St.<br />Buffalo, NY 14209</td>
<td class="contact_info">716-884-7791</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">West Side & Black Rock Riverside NHS, Inc.</td>
<td class="address">203 Military Rd.<br />Buffalo, NY 14207</td>
<td class="contact_info"><p>Tuesdays and Wednesdays at (716) 885-2344</p>
<p> Thursdays and Fridays at (716) 877-3910</p></td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Buffalo Urban League</td>
<td class="address">15 Genesee Street<br />
Buffalo, NY 14203</td>
<td class="contact_info">(716) 250-2400</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Services of Buffalo, Inc.</td>
<td class="address">40 Gardenville Parkway, Suite 300<br />West Seneca, NY 14224</td>
<td class="contact_info"><p>1-800-926-9685</p>
<p>OR</p>
<p>716-712-2060</p></td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Homefront, Inc.</td>
<td class="address">780 Fillmore Ave.Buffalo, NY 14212</td>
<td class="contact_info">716-877-3910</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Neighborhood Assistance Corp. of America</td>
<td class="address">1094 Hertel Avenue Buffalo, NY 14216</td>
<td class="contact_info">716-834-6222</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Neighborhood Housing Services of South Buffalo</td>
<td class="address">1937 South Park Ave.<br />Buffalo, NY 14220</td>
<td class="contact_info">716-823-3630</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="3" class="county">Essex</th>
<td class="agency">Friends of the North Country</td>
<td class="address">1 Mill St.<br />Keeseville, NY 12944</td>
<td class="contact_info">518-834-9606</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Housing Assistance Program of Essex County (HAPEC)</td>
<td class="address">103 Hand Ave.<br />Elizabethtown, NY 12932</td>
<td class="contact_info">518-873-6888</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Homefront Development Corp.</td>
<td class="address">568 Lower Allen St.<br />Hudson Falls, NY 12839</td>
<td class="contact_info">518-747-8250</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="3" class="county">Franklin</th>
<td class="agency">Friends of the North Country</td>
<td class="address">1 Mill St.<br />Keeseville, NY 12944</td>
<td class="contact_info">518-834-9606</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Housing Assistance Program of Essex County (HAPEC)</td>
<td class="address">103 Hand Ave.<br />Elizabethtown, NY 12932</td>
<td class="contact_info">518-873-6888</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Service of the North Country</td>
<td class="address">215 Washington St. Suite 005<br />Watertown, NY 13601</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="2" class="county">Fulton</th>
<td class="agency">Better Neighborhoods, Inc.</td>
<td class="address">986 Albany St.<br />Schenectady, NY 12307 </td>
<td class="contact_info">518-688-0289</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">UNHS NeighborWorks Homeownership Center</td>
<td class="address">1611 Genesee Street<br />Utica, NY 13501</td>
<td class="contact_info">315-724-4197</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="3" class="county">Genesee</th>
<td class="agency">Consumer Credit Counseling Services of Buffalo, Inc.</td>
<td class="address">40 Gardenville Parkway, Suite 300<br />West Seneca, NY 14224</td>
<td class="contact_info"><p>1-800-926-9685</p>
<p>OR</p>
<p>716-712-2060</p></td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">The Housing Council</td>
<td class="address">75 College Ave., 4th Floor<br />Rochester, NY 14607</td>
<td class="contact_info">585-546-3700 ext. 3015</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Services of Rochester, Inc.</td>
<td class="address">50 Chestnut Plaza<br />Rochester, NY 14604</td>
<td class="contact_info">1-888-724-2227</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="3" class="county">Greene</th>
<td class="agency">Albany County Rural Housing Alliance</td>
<td class="address"><p>Faith Plaza, Rt 9W Ravena, NY 12143</p>
<p>OR</p>
<p>10 Cayuga Plaza Cohoes, NY 12047</p></td>
<td class="contact_info"><p>518-756-3656 </p>
<p>OR</p>
<p>518-235-3920</p></td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Catskill Mountain Housing Development Corp.</td>
<td class="address">448 Main St.<br />Catskill, NY 12414</td>
<td class="contact_info">518-943-6700 ext. 14</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Clearpoint Financial Solutions</td>
<td class="address">2 Computer Drive West<br />Albany, NY 12205</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes">Formerly known as Consumer Credit Counseling Service of Central NY</td>
</tr>
<tr>
<th rowspan="3" class="county">Hamilton</th>
<td class="agency">Housing Assistance Program of Essex County (HAPEC)</td>
<td class="address">103 Hand Ave.<br />Elizabethtown, NY 12932</td>
<td class="contact_info">518-873-6888</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Service of the Mohawk Valley</td>
<td class="address">289 Genesee St.<br />Utica, NY 13501</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Homefront Development Corp.</td>
<td class="address">568 Lower Allen St.<br /> Hudson Falls, NY 12839</td>
<td class="contact_info">518-747-8250</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="2" class="county">Herkimer</th>
<td class="agency">UNHS NeighborWorks Homeownership Center</td>
<td class="address">1611 Genesee Street<br />Utica, NY 13501</td>
<td class="contact_info">315-724-4197</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Service of the Mohawk Valley</td>
<td class="address">289 Genesee St.<br />Utica, NY 13501</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="2" class="county">Jefferson</th>
<td class="agency">Home Headquarters, Inc.</td>
<td class="address">990 James St., Suite 1<br />Syracuse NY 13203</td>
<td class="contact_info">315-474-1939</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Service of the North Country</td>
<td class="address">215 Washington St. Suite 005<br />Watertown, NY 13601</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="16" class="county">Kings</th>
<td class="agency">Cypress Hills Local Dev. Corp.</td>
<td class="address">3214 Fulton St.<br />Brooklyn, NY 11208</td>
<td class="contact_info">718-647-8100</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Pratt Area Community Council</td>
<td class="address">1224 Bedford Ave.<br />Brooklyn, NY 11216</td>
<td class="contact_info">718-783-3549 ext.315</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Grow Brooklyn, Inc.</td>
<td class="address">1474 Myrtle Ave.<br />Brooklyn, NY 11237</td>
<td class="contact_info">718-418-8232 ext. 206</td>
<td class="notes">HOPP<br />Spanish and Bengali speaking staff available</td>
</tr>
<tr>
<td class="agency">Bridge Street Dev. Corp.</td>
<td class="address">460 Nostrand Ave.<br />Brooklyn, NY 11216</td>
<td class="contact_info">718-636-7596 ext. 11</td>
<td class="notes">HOPP<br />Spanish Speaking staff available</td>
</tr>
<tr>
<td class="agency">MHANY Management, Inc.</td>
<td class="address">2-4 Nevins St.<br />Brooklyn, NY 11217</td>
<td class="contact_info">718-246-8080 ext 203</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Neighbors Helping Neighbors (NHN)</td>
<td class="address">621 Degraw St.<br />Brooklyn, NY 11217</td>
<td class="contact_info">718-237-2017 ext.159</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Brooklyn Housing and Family Services, Inc.</td>
<td class="address">415 Albemarle Rd.<br />Brooklyn, NY 11218</td>
<td class="contact_info">718-435-7585</td>
<td class="notes">HOPP<br />Spanish and French Creole speaking staff available</td>
</tr>
<tr>
<td class="agency">Parodneck Foundation</td>
<td class="address">121 6th Ave., Suite 501<br />New York, NY 10013</td>
<td class="contact_info">212-431-9700 ext 391</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Neighborhood Housing Services of Bedford-Stuyvesant</td>
<td class="address">1012 Gates Ave., 2nd Floor<br />Brooklyn, NY 11221</td>
<td class="contact_info">718-919-2100</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">CAMBA</td>
<td class="address">1720 Church Ave., 2nd Floor<br />Brooklyn, NY 11226</td>
<td class="contact_info">718-287-0010</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Neighborhood Housing Services- East Flatbush</td>
<td class="address">2806 Church Ave.<br />Brooklyn, NY 11226</td>
<td class="contact_info">718-469-4679</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Greater Sheepshead Bay Dev. Corp.</td>
<td class="address">2105 East 22nd St.<br />Brooklyn, NY 11229</td>
<td class="contact_info">718-332-0582</td>
<td class="notes">HOPP<br />Russian speaking staff available</td>
</tr>
<tr>
<td class="agency">Grow Brooklyn, Inc.</td>
<td class="address">1474 Myrtle Ave.<br />Brooklyn, NY 11237</td>
<td class="contact_info">718-418-8232 ext. 206</td>
<td class="notes">HOPP<br />Spanish and Bengali speaking staff available</td>
</tr>
<tr>
<td class="agency">Southern Brooklyn Community Organization</td>
<td class="address">4006 18th Ave.<br />Brooklyn, NY 11218</td>
<td class="contact_info">718-435-1300</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">GreenPath Debt Solutions</td>
<td class="address">175 Remsen St., Suite 1102, Brooklyn, NY 11201</td>
<td class="contact_info">866-285-4033</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">NY Commission of Human Rights- Brooklyn</td>
<td class="address">275 Livingston St.<br />Brooklyn, NY 11217</td>
<td class="contact_info">718-722-3130</td>
<td class="notes">Spanish speaking staff available</td>
</tr>
<tr>
<th rowspan="2" class="county">Lewis</th>
<td class="agency">Home Headquarters, Inc.</td>
<td class="address">990 James St., Suite 1<br />Syracuse NY 13203</td>
<td class="contact_info">315-474-1939</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Service of the North Country</td>
<td class="address">215 Washington St. Suite 005, Watertown, NY 13601</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="2" class="county">Livingston</th>
<td class="agency">Consumer Credit Counseling Services of Rochester, Inc.</td>
<td class="address">50 Chestnut Plaza<br />Rochester, NY 14604</td>
<td class="contact_info">1-888-724-2227</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">The Housing Council</td>
<td class="address">75 College Ave., 4th Floor, <br />Rochester, NY 14607</td>
<td class="contact_info">585-546-3700</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="4" class="county">Madison</th>
<td class="agency">Home Headquarters, Inc.</td>
<td class="address">990 James St., Suite 1<br />Syracuse NY 13203</td>
<td class="contact_info">315-474-1939</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">UNHS NeighborWorks Homeownership Center</td>
<td class="address">1611 Genesee Street<br />Utica, NY 13501</td>
<td class="contact_info">315-724-4197</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Community Action Program for Madison County</td>
<td class="address">3 East Main St.<br />Morrisville, NY 13408</td>
<td class="contact_info">315-684-3144</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Service of the Mohawk Valley</td>
<td class="address">289 Genesee St.<br />Utica, NY 13501</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="4" class="county">Monroe</th>
<td class="agency">Consumer Credit Counseling Services of Rochester, Inc.</td>
<td class="address">1000 University Ave., Suite 900 <br />Rochester, NY 14607</td>
<td class="contact_info">1-888-724-2227</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Marketview Heights Association</td>
<td class="address">308 North Street<br />Rochester, NY 14605</td>
<td class="contact_info">585-423-1540</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">The Housing Council</td>
<td class="address">75 College Ave., 4th Floor, <br />Rochester, NY 14607</td>
<td class="contact_info">585-546-3700</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Urban League of Rochester</td>
<td class="address">265 North Clinton Ave.<br />Rochester, NY</td>
<td class="contact_info">585-325-6530</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="2" class="county">Montgomery</th>
<td class="agency">Better Neighborhoods, Inc.</td>
<td class="address">986 Albany St.<br />Schenectady, NY 12307 </td>
<td class="contact_info">518-688-0289</td>
<td class="notes">HOPP<br /></td>
</tr>
<tr>
<td class="agency">UNHS NeighborWorks Homeownership Center</td>
<td class="address">1611 Genesee Street<br />Utica, NY 13501</td>
<td class="contact_info">315-724-4197</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="10" class="county">Nassau</th>
<td class="agency">American Debt Resources, Inc.</td>
<td class="address">248C Larkfield Road, East Northport, NY 11731</td>
<td class="contact_info">631-912-9542</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Community Development Corporation of Long Island</td>
<td class="address">333 No Main St.<br />Freeport, NY 11520</td>
<td class="contact_info">631-471-1215 x158</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Hispanic Brotherhood of Rockville Centre, Inc.</td>
<td class="address">59 Clinton Ave.<br />Rockville Centre, NY 11570</td>
<td class="contact_info">516-766-6610</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">La Fuerza Unida, Inc.</td>
<td class="address">1 School St., Suite 302<br />Glen Cove, NY 11542</td>
<td class="contact_info">516-759-0788</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">LIFE, Inc.</td>
<td class="address">112 Spruce St.<br />Cedarhurst, NY 11516</td>
<td class="contact_info">516-374-4564</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Long Island Housing Partnership, Inc.</td>
<td class="address">180 Oser Ave.<br />Hauppaugue, NY 11788</td>
<td class="contact_info">631-435-4710</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Long Island Housing Services, Inc.</td>
<td class="address">640 Johnson Ave., Suite 8<br />Bohemia, NY 11716</td>
<td class="contact_info">631-567-5111</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Rockaway Development and Revitilization Corp</td>
<td class="address">1920 Mott Ave. Rm #2<br />Far Rockaway, NY 11691</td>
<td class="contact_info">718-327-5300</td>
<td class="notes">HOPP<br />funded in NYC<br />Serves Western Nassau</td>
</tr>
<tr>
<td class="agency">CHHAYA</td>
<td class="address">37-43 77th St.<br />Jackson Heights, NY 11372</td>
<td class="contact_info">718-478-3848</td>
<td class="notes">HOPP<br/>funded in NYC<br />Southeast Asian speaking Counselors on staff</td>
</tr>
<tr>
<td class="agency">GreenPath Debt Solutions</td>
<td class="address">300 Garden City Plaza, Suite 220<br />Garden City, NY 11530</td>
<td class="contact_info">888-776-6738</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="5" class="county">New York</th>
<td class="agency">AAFE Community Development Fund, Inc.</td>
<td class="address">111 Division St.<br />New York, NY 10002</td>
<td class="contact_info">212-964-2288</td>
<td class="notes">HOPP<br />Chinese and Korean speaking staff available</td>
</tr>
<tr>
<td class="agency">MHANY Management, Inc.</td>
<td class="address">2-4 Nevins St.<br />Brooklyn, NY 11217</td>
<td class="contact_info">718-246-8080 ext 203</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Grow Brooklyn, Inc.</td>
<td class="address">1474 Myrtle Ave.<br />Brooklyn, NY 11237</td>
<td class="contact_info">718-418-8232 ext. 206</td>
<td class="notes">HOPP<br />Spanish and Bengali speaking staff available</td>
</tr>
<tr>
<td class="agency">Parodneck Foundation</td>
<td class="address">121 6th Ave., Suite 501<br />New York, NY 10013</td>
<td class="contact_info">212-431-9700 ext 391</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">GreenPath Debt Solutions</td>
<td class="address">One Penn Plaza, Suite 2108<br />New York, NY 10119</td>
<td class="contact_info">866-285-4059</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="4" class="county">Niagara</th>
<td class="agency">Belmont Housing Resources</td>
<td class="address">1195 Main St.<br />Buffalo, NY 14209</td>
<td class="contact_info">716-884-7791</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Buffalo Urban League</td>
<td class="address">15 Genesee Street<br />
Buffalo, NY 14203</td>
<td class="contact_info">(716) 250-2445</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">West Side & Black Rock Riverside NHS, Inc.</td>
<td class="address">203 Military Rd.<br />Buffalo, NY 14207</td>
<td class="contact_info">Tuesdays and Wednesdays at (716) 885-2344<br />Thursdays and Fridays at (716) 877-3910</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Neighborhood Housing Services of Buffalo</td>
<td class="address">1937 South Park Ave.<br />Buffalo, NY 14220</td>
<td class="contact_info">716-823-3630</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="3" class="county">Oneida</th>
<td class="agency">UNHS NeighborWorks Homeownership Center</td>
<td class="address">1611 Genesee Street<br />Utica, NY 13501</td>
<td class="contact_info">315-724-4197</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Clearpoint Credit Counseling Solutions</td>
<td class="address">5794 Widewaters Parkway, Syracuse, NY 13214</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Northeast Hawley Development Corp.</td>
<td class="address">101 Gertrude St.<br />Syracuse, NY 13202</td>
<td class="contact_info">315-425-1032</td>
<td class="notes"></td>
</tr>
<tr>
<th class="county">Onondaga</th>
<td class="agency">Home Headquarters, Inc.</td>
<td class="address">990 James St., Suite 1<br />Syracuse NY 13203</td>
<td class="contact_info">315-474-1939</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<th rowspan="4" class="county">Ontario</th>
<td class="agency">The Housing Council</td>
<td class="address">75 College Ave., 4th Floor<br />Rochester, NY 14607</td>
<td class="contact_info">585-546-3700</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Services of Rochester, Inc.</td>
<td class="address">50 Chestnut Plaza<br />Rochester, NY 14604</td>
<td class="contact_info">1-888-724-2227</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Community Action in Self Help</td>
<td class="address">48 Water St.<br />Lyons, NY 14489</td>
<td class="contact_info">315-946-6992</td>
<td class="notes">HOPP<br />Serving townships of Manchester and Phelps</td>
</tr>
<tr>
<td class="agency">Keuka Housing Council</td>
<td class="address">160 Main St.<br />Penn Yan, NY 14527</td>
<td class="contact_info">315-536-8707</td>
<td class="notes">Seen on case by case basis with focus on senior citizens</td>
</tr>
<tr>
<th rowspan="2" class="county">Orange</th>
<td class="agency">Hudson River Housing</td>
<td class="address">291 Mill St Poughkeepsie, NY 12601</td>
<td class="contact_info">845-454-9288</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Orange County Rural Development Advisory Corp.</td>
<td class="address">59b Boniface Drive<br />Pine Bush, NY 12566</td>
<td class="contact_info">845-713-4568</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="3" class="county">Orleans</th>
<td class="agency">Belmont Housing Resources</td>
<td class="address">1195 Main St.<br />Buffalo, NY 14209</td>
<td class="contact_info">716-884-7791</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">The Housing Council</td>
<td class="address">75 College Ave., 4th Floor<br />Rochester, NY 14607</td>
<td class="contact_info">585-546-3700</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Consumer Credit Counseling Service of Rochester, Inc.</td>
<td class="address">50 Chestnut Plaza<br />Rochester, NY 14604</td>
<td class="contact_info">1-888-724-2227</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="3" class="county">Oswego</th>
<td class="agency">Home Headquarters, Inc.</td>
<td class="address">990 James St., Suite 1<br />Syracuse NY 13203</td>
<td class="contact_info">315-474-1939</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">Oswego Housing Development Council, Inc.</td>
<td class="address">2971 County Rte. 26<br />Parish, NY 13131</td>
<td class="contact_info">315-625-4520</td>
<td class="notes"></td>
</tr>
<tr>
<td class="agency">Clearpoint Credit Counseling Solutions</td>
<td class="address">5794 Widewaters Parkway, Syracuse, NY 13214</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="2" class="county">Otsego</th>
<td class="agency">UNHS NeighborWorks Homeownership Center</td>
<td class="address">1611 Genesee Street<br />Utica, NY 13501</td>
<td class="contact_info">315-724-4197</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Clearpoint Financial Solutions</td>
<td class="address">The Metro Center, 49 Court St.<br />Binghamton, NY 13901</td>
<td class="contact_info">1-877-412-2227</td>
<td class="notes"></td>
</tr>
<tr>
<th rowspan="2 class="county"">Putnam</th>
<td class="agency">Housing Action Council</td>
<td class="address">55 South Broadway<br />Tarrytown, NY 10591</td>
<td class="contact_info">914-332-4144</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Putnam County Housing Corp.</td>
<td class="address">11 Seminary Hill Rd.<br />Carmel, NY 10512</td>
<td class="contact_info">845-225-8493</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<th rowspan="10" class="county">Queens</th>
<td class="agency">Neighborhood Housing Services of Northern Queens</td>
<td class="address">60-20 Woodside Ave.<br />Flushing, NY 11377</td>
<td class="contact_info">718-457-1017</td>
<td class="notes">HOPP<br />Spanish and French Creole speaking staff available</td>
</tr>
<tr>
<td class="agency">Neighborhood Housing Services- Jamaica</td>
<td class="address">89-70 162nd St.<br />Jamaica, NY 11432</td>
<td class="contact_info">718-291-7400</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>
<td class="agency">CHHAYA</td>
<td class="address">37-43 77th St.<br />Jackson Heights, NY 11372</td>
<td class="contact_info">718-478-3848</td>
<td class="notes">HOPP<br />Southeast Asian speaking Counselors on staff</td>
</tr>
<tr>
<td class="agency">Grow Brooklyn, Inc.</td>
<td class="address">1474 Myrtle Ave.<br />Brooklyn, NY 11237</td>
<td class="contact_info">718-418-8232 ext. 206</td>
<td class="notes">HOPP<br />Spanish and Bengali speaking staff available</td>
</tr>
<tr>
<td class="agency">Rockaway Development and Revitilization Corp</td>
<td class="address">1920 Mott Ave., Second Floor<br />Far Rockaway, NY 11691</td>
<td class="contact_info">718-327-5300</td>
<td class="notes">HOPP</td>
</tr>
<tr>
<td class="agency">Parodneck Foundation</td>
<td class="address">121 6th Ave., Suite 501<br />New York, NY 10013</td>
<td class="contact_info">212-431-9700 ext 391</td>
<td class="notes">HOPP<br />Spanish speaking staff available</td>
</tr>
<tr>