<!-- Original:  Dion (biab@iinet.net.au) -->
<!-- Web Site:  http://www.iinet.net.au/~biab -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var item = new Array();

/* Here is where all the magic happens.  
    Just enter as many additional pages that
    that you want to search, then fill in the
    additional listings for each page.
*/

// "Page Name","path","Page Title","Many,Key,Words","Descriptive Comments"

c=0; item[c]=new Array("index.html","","ER Management, Inc. Home","headquarter,headquarters,birmingham,alabama, ervice,lifestyle,experience.home,equity,resource,management,contact","A total service lifestyle.");
c++; item[c]=new Array("careers.htm","","Careers at ER Management","career,careers,working,job,application,employee,employer","If you are interested in working with ER Management, please fill out our PDF application.");
c++; item[c]=new Array("about.htm","","About ER Management","about,er,management,real,estate,investment,companies,company,philosophy,value,assets,years","ER Management, LLC, has consistently grown into one of the largest privately owned real estate investment companies in the Southeast.");
c++; item[c]=new Array("condos.htm","","Condominium Homes","condos,condominium,condominiums,naples,florida,sugar,land,texas","Visit our condominium home websites.");
c++; item[c]=new Array("contact.htm","","Contact Us","contact,email,phone,number,address,fax,us,touch,communicate,question,questions,comments,message,comment,request,information","Contat Equity Resources.");
c++; item[c]=new Array("history.htm","","Company History","company,companies,history,years,owner","");
c++; item[c]=new Array("services.htm","","Corporate Services","corporate,services,service,company","");
c++; item[c]=new Array("testimonials.htm","","Testimonials","testimonials,customers,review,reviews,testimonial,rate,rating","");
c++; item[c]=new Array("erindex.htm","","Equity Resources, LLC Home","equity,resources,llc,company,history,services,corporate,testimonials,contact,value,years","Equity Resources, LLC has consistently grown into one of the largest privately owned real estate investment companies in the Southeast.");
c++; item[c]=new Array("press_rooms","","Press Room","press,article,report,news,grayton,property,nichols,equity,resources,marketing,geiss,wedgworth,birmingham,highland,fiorella,investments,wigley,plaza,development,southside,portfolio,flats,building,niche,upscale,investor,hoover,retail,houston,million,apartments,orlando,commercial,moody,realtors,best,crittenden,acquisition,gulf,coast,highway","Equity Resources in the news.");
c++; item[c]=new Array("resident_services.htm","","Resident Services","debit,maintenance,request,benefits,guest,apartment,amenity,reserve,pet,information,resident,service,services,residents","");
c++; item[c]=new Array("sitemap.htm","","Site Map","links,site,map,sitemap,index,listing,help","");
c++; item[c]=new Array("fairhousing.htm","","Fair Housing","fair,housing","");
c++; item[c]=new Array("find.htm","","Find an Apartment Home","apartment,home,search,city,community,texas,florida,alabama,georgia,tennessee,north,carolina,state,find,locate","Use our interactive map and menus to search by city, state, or community.");
c++; item[c]=new Array("living.htm","","Living at ER","living,live,equity,resources,apartment,move,lifestyle,management,residents","Welcome to ER Management where your home is an oasis of luxury living that appeals to those who truly appreciate quality.");
c++; item[c]=new Array("rentalapp.htm","","Rental Application","rent,rental,application,month,live,tenant,landlord","");
c++; item[c]=new Array("texas.htm","results/","Texas","texas,lodge,kingwood,villas,west,oaks,houston,austin,dallas,property,properties,apartment,apartments,condo","View our Texas properties.");
c++; item[c]=new Array("florida.htm","results/","Florida","florida,property,properties,miami,pensacola,tallahassee,orlando,apartment,apartments,condo","View our Florida properties.");
c++; item[c]=new Array("alabama.htm","results/","Alabama","alabama,property,properties,apartment,apartments,condo","View our Alabama properties.");
c++; item[c]=new Array("georgia.htm","results/","Georgia","georgia,property,properties,apartment,apartments,condo","View our Georgia properties.");
c++; item[c]=new Array("tennessee.htm","results/","Tennessee","tennessee,property,properties,apartment,apartments,condo","View our Tennessee properties.");
c++; item[c]=new Array("northcarolina.htm","results/","North Carolina","north,carolina,property,properties,apartment,apartments,condo","View our North Carolina properties.");

page="<html><head><title>Equity Resources Search Results</title><link href='stylesheets/er.css' rel='stylesheet' type='text/css' /></head><body bgcolor='#f4ebce' class='contentbold'><center><table class='content' border=0 cellspacing=10 width=80%>";


function search(frm) {
win = window.open("","","scrollbars");
win.document.write(page);
txt = frm.srchval.value.split(" ");
fnd = new Array(); total=0;
for (i = 0; i < item.length; i++) {
fnd[i] = 0; order = new Array(0, 4, 2, 3);
for (j = 0; j < order.length; j++)
for (k = 0; k < txt.length; k++)
if (item[i][order[j]].toLowerCase().indexOf(txt[k]) > -1 && txt[k] != "")
fnd[i] += (j+1);
}
for (i = 0; i < fnd.length; i++) {
n = 0; w = -1;
for (j = 0;j < fnd.length; j++)
if (fnd[j] > n) { n = fnd[j]; w = j; };
if (w > -1) total += show(w, win, n);
fnd[w] = 0;
}
win.document.write("</table><br>Total found: "+total+"<br></body></html>");
win.document.close();
}
function show(which,wind,num) {
link = item[which][1] + item[which][0]; 
line = "<tr><td><a href='"+link+"'>"+item[which][2]+"</a> Score: "+num+"<br>";
line += item[which][4] + "<br>"+link+"</td></tr>";
wind.document.write(line);
return 1;
}
//  End -->

