<!-- 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("http://www.rentalselkton.com/index.htm","","Homepage","index,main,start,home,front","Homepage including links to all pages.");
c++; item[c]=new Array("http://www.rentalselkton.com/about.htm","","About us","purpose,history,company history,who,where,location","Read about our company and who we are.");
c++; item[c]=new Array("http://www.rentalselkton.com/contact.htm","","Contact Us","contact,call,email,contact us, how to contact,how to call,email us","How to contact us by phone or email.");
c++; item[c]=new Array("http://www.rentalselkton.com/help.htm","","Help","help,problem,website","We offer solutions!");
c++; item[c]=new Array("http://www.rentalselkton.com/homes.htm","","Homes For Sale","home,real estate,sale,buy,investment,property,purchase","View homes we currently have for sale.");
c++; item[c]=new Array("http://www.rentalselkton.com/17_cc.htm","","17 Cimmaron Circle--Rental Property","17,cimmaron,cimaron,circle,elkton,maryland,21921,rent,rental,tenant,house,property","Take a look at this terrific rental property.");
c++; item[c]=new Array("http://www.rentalselkton.com/54_wc.htm","","54 Willow Court--Rental Property","54,willow,court,elkton,maryland,21921,rent,rental,tenant,house,property","Take a look at this terrific rental property.");
c++; item[c]=new Array("http://www.rentalselkton.com/2931_biggs_hwy.htm","","2931 Biggs Highway--Home For Sale","2931,biggs,highway,hwy,hiway,north east, northeast, rising sun, risingsun,maryland,21901,home,real estate,house,property,sale","Take a look at this GREAT value!");
c++; item[c]=new Array("http://www.rentalselkton.com/79_jpr.htm","","79 Jackson Park Rd--Home For Sale","79,jackson,park,road,rd,port,deposit,maryland,21904,21903,home,real estate,house,property,sale","Take a look at this GREAT value!");
c++; item[c]=new Array("http://www.rentalselkton.com/sell.htm","","Sell Your House","sell,unwanted,house,property","We are interested in buying unwanted property!");
c++; item[c]=new Array("http://www.rentalselkton.com/rental.htm","","Rental Properties","rent,rental,tenant,house,property","Take a look at our rental properties.");
c++; item[c]=new Array("http://www.rentalselkton.com/schools.htm","","School Reports","school,school report,compare, compare schools,report,public","Compare the schools in our region with schools around the country.");
c++; item[c]=new Array("http://www.rentalselkton.com/mortg_calc.htm","","Mortgage Information","mortgage,mortgage calculator,mortgage information,payments","Mortgage information including a mortgage calculator");
c++; item[c]=new Array("http://www.rentalselkton.com/utilities.htm","","Utility Companies","utility,utilities,electric,gas,power,heat,water,sewer,connect,connections","We provide information regarding area utility companies.");
c++; item[c]=new Array("http://www.rentalselkton.com/terms.htm","","Website Terms and Conditions","website,website terms,terms,conditions,terms and conditions of use","Stated terms and conditions when using this website.");
c++; item[c]=new Array("http://www.rentalselkton.com/privacy.htm","","Privacy Policy","privacy,security,privacy policy","How we keep your private information secure.");

page="<HTML><HEAD><TITLE>Search Results</TITLE><LINK href='styles.css' type='text/css' rel='stylesheet'></HEAD><BODY onload='resizeTo(900,760);moveTo(0,0)'; bgcolor='#D1D1D1'><center><br><br><br><ul><table border=0 cellspacing=20 width=80%>";

function search(frm) {
win = window.open("","","scrollbars=yes,resizable=yes,status=yes,toolbar=yes,menubar=yes,location=no,screenX=0,left=0,screenY=0,top=0");
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+"</a><br><br><br><br><a class=searchlink href='http://www.rentalselkton.com/'>Quinn Properties Home</a></BODY></HTML>");
win.document.close();
}
function show(which,wind,num) {
link = item[which][1] + item[which][0]; 
line = "<tr><TD class="c9"><a class=searchlink href='"+link+"'>"+item[which][2]+"  Score: "+num+"</a><br>";
line += item[which][4] + "<br>"+link+"</td></tr>";
wind.document.write(line);
return 1;
}
//  End -->