<!-- Hide Script From Non-JavaScript Browsers

TotalOfDescriptions = 10;

function MakeArray(n) {
   this.length = n;
   for (var i = 1; i <= n; i++) { 
     this[i] = 0 }
     return this
   }

Descriptions = new MakeArray(TotalOfDescriptions);

Descriptions[1] = "Audra Camacho, RealtorŪ - cell: (805) 795-4283";
Descriptions[2] = "We will sell your home through the perfect combination of personalized marketing, networking and digital technology.";
Descriptions[3] = "Of course!  Please contact us via email or phone and we will be happy to send you more information.";
Descriptions[4] = "We have been working throughout the community in various capacities for over 15 years.  With our extensive database of contacts and our attention to detail, our service is second-to-none.";
Descriptions[5] = "Yes, we will show you the best properties in your price range regardless of which company holds the listing agreement.";
Descriptions[6] = "We take pride in our reputation as professionals.  We guarantee the highest standard of professionalism and accountability to our clients.";
Descriptions[7] = "Yes, Audra Camacho belongs to NAR, better known as the National Association of RealtorsŪ.";
Descriptions[8] = "We are a team that fully utilizes the strengths of each associate, from marketing to information technologies.";
Descriptions[9] = "Yes, both Audra and Aaron's licenses are without fault and can be reviewed at: http://www2.dre.ca.gov/PublicASP/pplinfo.asp";
Descriptions[10] = "We use all of the following:  Internet campaigns, MLS listings, personal website listings, virtual tours, photo galleries, search engines, personal networking, and much more.";

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 -->