// JavaScript Document<SCRIPT LANGUAGE="JavaScript">
<!-- 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.courtelis.com/review/index.html","","Home","index,main,start,home,front, courtelis, company, development, news, project","Courtelis Company, an innovative approach to development. Home Page");
c++; item[c]=new Array("http://www.courtelis.com/review/company.html","","Company","company, courtelis, bios, people, organization, history, who, Eileen M. Cardelle, Rod Castan, Erin Coleman, T.J. Summers, Jim Zaydon, In life we all must decide whether to lead or follow...If you choose to be a leader, you must be prepared to dedicate yourself to the principles of creativity, hard work, persistence and honesty. And, if you practice these principles, success will surely follow ...This philosophy, when applied to real estate development, will produce a strong pride of ownership and major appreciation in real estate values, Courtelis Company was founded in Miami, Florida by Alec P. Courtelis in 1963, and two years later he was joined by W. Douglas Pitts, Sr. Working together over time, Courtelis and Pitts built the company to meet the unique and changing needs of the real estate industry in Florida.","Courtelis Company information, Team bios and company history");
c++; item[c]=new Array("http://www.courtelis.com/review/eileen.html","","Eileen Cardelle Bio","Eileen, Cardelle, Eileen Cardelle, Bios, team, company","Eileen Cardelle Bio");
c++; item[c]=new Array("http://www.courtelis.com/review/erin.html","","Erin Coleman Bio","Erin, Coleman, Erin Coleman, Bios, team, company","Erin Coleman Bio");
c++; item[c]=new Array("http://www.courtelis.com/review/rod.html","","Rod Castan Bio","Rod, Castan, Rod Castan, Bios, team, company","Rod Castan Bio");
c++; item[c]=new Array("http://www.courtelis.com/review/summers.html","","T.J. Summers Bio","T.J., Summers, T.J. Summers, Bios, team, company","T.J. Summers Bio");
c++; item[c]=new Array("http://www.courtelis.com/review/jim.html","","Jim Zaydon Bio","Jim, Zaydon, Jim Zaydon, Bios, team, company","Jim Zaydon Bio");
c++; item[c]=new Array("http://www.courtelis.com/review/capabilities.html","","Capabilities","capabilites, land, master, master land, commercial, development, leasing, construction, property, management, asset","Courtelis Company capabilities");
c++; item[c]=new Array("http://www.courtelis.com/main/main.htm","","Main Page","content,main,focus","The main part of my site which contains what you have come to see. Lots of stuff like that and more great things. All in a sub directory.");
c++; item[c]=new Array("http://www.courtelis.com/main/images/logo.jpg","","Link Logo","link,image,logo,graphic","The logo.jpg is just a small image which you can place on your site as a link to me. It's in a second level subdirectory.");

page="<html><head><title>Search Results</title><link href='./gfx/style.css' rel='stylesheet' type='text/css'><script language='JavaScript'>function changeParent(where){window.opener.location = where;window.close();}</script></head><body bgcolor='white'><center><table 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><span class='mainTxt'><b>Total found: "+total+"</b></span><br></body></html>");
win.document.close();
}
function show(which,wind,num) {
link = item[which][1] + item[which][0];  
line = "<tr><td><a href='#' onClick=\"changeParent('"+link+"')\" class='two'>"+item[which][2]+"</a><br><span class='mainTxt'>";
line += item[which][4];
wind.document.write(line);
return 1;
}
//  End -->
