EZ HARD MONEY

  BORROWERS

 

Why use Trust Deed Investments, LLC.?

 

The PROPERTY doesn't fit the institutional lenders requirements!

The BORROWER doesn't fit the institutional lenders requirement!

You're tired of the Bank and Mortgage Company requirements!

 

                        You need your money FAST and don't have the time to meet the typical underwriting requirements and time period of the institutional lender which can run from 3 to 6 months. 

                      You've come across an opportunity and need to move on it NOW!

                          You cannot or will not go through the strenuous and time-consuming underwriting required by conventional lenders.

                         You have an immediate need for short-term money.

                      You're temporarily credit impaired or cash flow impaired.

                          You can't convenience the bank that you can make payments.

                      You can't meet the lenders ratio requirements.

                           The property doesn't qualify.

                           The property isn't leased up.

                           The rent roll isn't seasoned.

              You're tired and fed up with the way the Bank treats you

                  

 

          Many private money Borrowers can borrow from a Bank or Mortgage Company, but find the ease and speed and simplicity of dealing with Trust Deed Investments, LLC. fits their requirements better. 

 

Loan Examples

                Construction loan for developer on Spec House.

             First mortgage on vacant land zoned for

               office building.

                  First mortgage on vacant land zoned for

               multi-family housing.

                  Property owner sells land.  Seller carried back

               1st mortgage.  Seller then found he had

               cash needs.  The note and deed of trust

               was used as security for the loan.

                  Property owner sells land.  Seller carried back

               1st mortgage.  Seller then found he had

               cash needs.  The note and deed of trust

               was purchased outright.

                  Borrower needed money to purchase land that

               they intend to subdivide and needed a

               land loan until their plans were approved.

                  Property owner needed money for another

               of their businesses and to pay off a

               balloon note.  Money was loaned on

               property owned and the money used for

               non-property debt.

               Developer needed money to put in utilities.

               Owner of Note and Deed of Trust

               needed money.  Purchase of Note and

               Deed of Trust.

                    Investor had opportunity to purchase retail

               strip shopping center so long as closing

               was within sixty days. 

                    Developer needed money for land and site

                improvements.           

                    Developer needed money for purchase of

               existing farm with intention of building

               housing subdivision.

 

      Trust Deed Investments, LLC. offers personalized service, speed and simplicity.   We take the headache out of borrowing.   Many developers, both small and large, use Private Loans because of the ease and speed.  Instead of jumping through the hoops of a bank or institution, you meet with us in an informal, stress free environment.   We will discuss your needs and propose solutions.  

 

We make loans in amounts between $50,000 and $1,000,000+.  If you want to borrow less than $50,000, we probably can't help you unless it's a very exceptional circumstance.  If you want to borrow more than $1,000,000 contact us.  We have no ceiling on the amount that we can loan.

 

          We have no pre-set criteria.  We look at the loan as a whole package.  We need to be able to sell the loan to our private investors.  We need to feel comfortable that you can make the monthly payments and that you have an exit strategy so that you can pay the loan off when it comes due.  There needs to be equity in the property so that our investors will be protected and insured of receiving both their principal and interest and we also want to know that you have a secured interest in the property.  Credit rating is not all important as it is to a Bank or Mortgage Company, but we won't loan money to a chronic deadbeat or someone that is always behind on debt.  Most loan decisions are made based on purchase price. 

 

We don't do no-money down loans! 

You need to have equity in the property!

If you can supply the collateral (with equity) we can supply the money!

 

Send us an e-mail at:  ezhardmoney@aol.com 

or

call us at: (610)444-4338

or

fax us at: (610)444-6883

 

  We can help! 

 

We can make getting Hard Money E-Z!

 

 

#!/usr/bin/perl ############################################################################## # Hit Counter Version 1.0.0 # # Created 10/16/02 Last Modified 10/16/02 # ############################################################################## # hitcounter.cgi # # parameters: returns: # none none # # History: # Provides a Hit Counter in conjuction with WSCO. # # Date: Initials: Defect#: Comments: # 2002-10-16 SMS N/A creator # 2002-11-12 GJK Modified to use images from WSC counter # and to get style from query string. ############################################################################## ############################################################# ### Counter Data File Location:############################## $imageStyle = "s1"; $serverPath = "http://plugins.websitecomplete.com/wsc_images"; $docroot = $ENV{'DOCUMENT_ROOT'}; if ($docroot eq '') { $docroot = ".." }; $countfile = "$docroot/plugin_data/hitcount.txt"; $digits = 8; if($ENV{"REQUEST_METHOD"} =~ /^get/i) { $DATA = $ENV{"QUERY_STRING"}; @Fields = split(/&/, $DATA); foreach $_ (@Fields) { ($name, $val) = split(/=/, $_); $val =~ tr/+/ /; $val =~ s/\%([0-9a-f]{2})/chr(hex($1))/egi; $Form{$name} = $val; } $DATA = $ENV{"HTTP_COOKIE"}; @Fields = split(/; /, $DATA); foreach $_ (@Fields) { ($name, $val) = split(/=/, $_); $Cookie{$name} = $val; } } $imageStyle = $Form{"ImageStyle"}; $initial_value = int($Form{"Init"}); $BgColor = "#$Form{'BgColor'}"; if ($Form{'mode'} eq '2') { &PrintCookie; } else { print "Content-type: text/html\n\n"; if ($Cookie{$Form{'ID'}} ne "true") { &AddCount; } &PrintCount; } #while (($k, $_) = each %ENV) #{ # s/(['\\])/\\$1/g; # print "\$ENV{'$k'} = '$_';
\n"; #} sub PrintCookie { print "Content-type:image/gif\n"; $exprtn = ""; $value = "$Form{'ID'}=true;"; print "Set-Cookie: $value path=/; $exprtn\n\n"; $giffile = "$docroot/images/spacer.gif"; undef $/; open(F,"< $giffile") or die $!; print ; close(F); } sub PrintCount { $ThisPage = $Form{'ID'}; open(FILE, "$countfile"); @Data = ; close(FILE); # Print the image to use to generate a cookie print "

"; print ""; foreach $Match (@Data) { chop($Match); ($count, $url) = split(/::/, $Match); if ($url eq $ThisPage) { $hits = $count; last; } } @nums = split(//, $hits); $cnt = $digits - int(@nums); $printcount = ""; while ($cnt > 0) { $printcount="$printcount"; $cnt--; } $end1 = ""; $end2 = ""; if ($imageStyle ne 's1') { $end1 = ""; $end2 = ""; } foreach $CountNr (@nums) { $printcount = "$printcount"; } print "$end1$printcount$end2"; print "

"; } sub AddCount { $ThisPage = $Form{'ID'}; open(COUNTS, "+<$countfile") or open(COUNTS, "+>$countfile") or print("Cannot open counts file: $!"); while () { chop; ($count, $file, $initialcount) = split(/::/, $_); $counts{$file} = $count; $initial{$file} = $initialcount; } $counts{$ThisPage}++; if ($initial{$ThisPage} ne $initial_value) { $counts{$ThisPage} = $initial_value; $initial{$ThisPage} = $initial_value; } seek(COUNTS, 0, 0); foreach $file (keys %counts) { print COUNTS $counts{$file}, "::", $file, "::", $initial{$file}, "\n"; } close(COUNTS); }

 

Home Page | Contact Us (Broker) | Investor Information | Brokers | Contact Us (Investors) | Apply for a Loan | Contact Us (Investors) | Loan Process | IRA Investing
Copyright © 2003 Trust Deed Investments, LLC. . All Rights Reserved.

Starfield Technologies