﻿<!-- Hide Script From Non-JavaScript Browsers

TotalOfDescriptions = 11;

function MakeArray(n) {
   this.length = n;
   for (var i = 1; i <= n; i++) { 
     this[i] = 0 }
     return this
   }

Descriptions = new MakeArray(TotalOfDescriptions);

Descriptions[1] = "The best way to contact us is by email or webmail.  Click on the Contact link above for more details.;"
Descriptions[2] = "The type of loan you should get depends many factors including rate, security, and payment.  Please contact us so that we can help you find the loan that is right for your specific situation."
Descriptions[3] = "At Intuitive Loans, we have over 100 lenders/banks to choose from.  If we cannot find a home for your loan, we will direct you to someone who can.";
Descriptions[4] = "Of course!  Please contact us via email, webmail, or phone and we will be happy to send you more information.";
Descriptions[5] = "At Intuitive Loans, every aspect of loan origination is systematized, perfected and then automated.  With our extensive database of contacts and our attention to detail, our service is second-to-none.";
Descriptions[6] = "Yes, at Intuitive Loans we can get you any currently available product (assuming, of course, that you qualify for that product.)";
Descriptions[7] = "We take pride in our reputation as professionals.  We guarantee the highest standard of professionalism and accountability to our clients.";
Descriptions[8] = "No, we are not Realtors®.  However, if you find yourself in need of a Realtor®, we can easily provide you with recommendations for your area.";
Descriptions[9] = "We are a team that fully utilizes the strengths of each associate.  These individual and group strengths include loan pricing, processing, funding, marketing, and information technologies.";
Descriptions[10] = "We use all of the following:  Internet rate finders, lender website searches, automated underwriting, search engines, personal networking, and much more.";
Descriptions[11] = "There are hundreds of websites that contain overwhelming statistics and information regarding home loans.  At Intuitive Loans, we keep it simple: You simply tell us your situation and we will guide you to make the best choice possible.";

function ShowDescription() {

for (i=0; i < document.DescriptionForm.Menu.options.length; i++) {
    if (document.DescriptionForm.Menu.options[i].selected==true) {
       document.DescriptionForm.DescriptionTextArea.value=Descriptions[i+1];
       }
    }
}

// Stop Hiding -->
