var item = new Array();

// "Page Name","path","Page Title","Many,Key,Words","Descriptive Comments"

c=0; item[c]=new Array("index.htm","","Book binding systems and supplies","index,main,start,home,front,InaBind,inabind,Inabind,business,distributor","InaBind home page.");
c++; item[c]=new Array("about.htm","","InaBind company information","about,company,what,product,who","About the company. Who does what.");
c++; item[c]=new Array("contact.htm","","InaBind Contact Information","location,map,information,email,questions,contact,phone","Contact information. Our location. Questions and answers.");
c++; item[c]=new Array("info.htm","","Information and customer feedback","news,releases,customer,feedback, email,information","News releases. Updates. New information and customer feedback.");
c++; item[c]=new Array("faq.htm","","Frequently asked questions","questions, anwers, tips, information","Answers to frequently asked questions. Technical tips and information.");
c++; item[c]=new Array("sitemap.htm","","Site Map","links,site,content,site map,TOC,table","Links to all pages in the site.");
c++; item[c]=new Array("products.htm","","Fastback systems","Fastback,fastback,products,binders,printers,FoilFast,foilfast,Foilfast,powis,Foil,foil,PowisPrinter,15xs,11,8,scorer,21,31,scoring,Scorer,Scoring,","All Fastback book binding systems, printers and scorer.");
c++; item[c]=new Array("FB15xs.htm","Products/","Fastback 15xs","fb15,Fastback,fastback,products,15xs,operating,instructions,demo,demonstration,slideshow,using,thermal,heat","Overview of the Fastback 15xs thermal heat binder with quick demo on how to use it.");
c++; item[c]=new Array("FB11.htm","Products/","Fastback 11","fb11,Fastback,fastback,products,11,operating,instructions,demo,demonstration,slideshow,using,thermal,heat","Overview of the Fastback 11 thermal heat binder with quick demo on how to use it.");
c++; item[c]=new Array("FB8.htm","Products/","Fastback 8","fb8,Fastback,fastback,products,8,operating,instructions,demo,demonstration,slideshow,using,thermal,heat","Overview of the Fastback 8 thermal heat binder with quick demo on how to use it.");
c++; item[c]=new Array("pp.htm","Products/","PowisPrinter","FB,fb31,pp,powis,Fastback,fastback,products,PowisPrinter,powisprinter,printer,Powisprinter,31,operating,instructions,demo,demonstration,slideshow,using,cart,cartridge,cartridges","Overview of the PowisPrinter with quick demo on how to use it.");
c++; item[c]=new Array("ff.htm","Products/","FoilFast printer","FB,fb21,ff,fast,Fastback,fastback,products,FoilFast,foilfast,printer,Foilfast,21,foil,cart,Foil,cartridge,cartridges","Overview of the FoilFast printer.");
c++; item[c]=new Array("FBscorer.htm","Products/","Fastback Scorer","Fastback,fastback,products,scorer,Scorer,operating,instructions,demo,demonstration,slideshow,using","Overview of the Fastback Scorer with quick demo on how to use it.");
c++; item[c]=new Array("rot.htm","Products/","Rhin-o-Tuff systems","Rhin-o-Tuff,Rhin-O-tuff,rhin-o-tuff,rhin-o-tuff,rhinotuff,rhino,products,OD,HD,7000,4000,4800,punch,binders,hot,knife","Overview of the Rhin-o-Tuff punch binding systems.");
c++; item[c]=new Array("HD7000.htm","Products/","HD7000 Punch and Die","HD,hd,7000,die","Overview of the Rhin-o-Tuff HD7000 punch binder.");
c++; item[c]=new Array("OD4000.htm","Products/","OD4000 Punch and Die","OD,od,4000,die","Overview of the Rhin-o-Tuff OD4000 punch binder.");
c++; item[c]=new Array("OD4800.htm","Products/","OD4800 Punch and Die","OD,od,4800,die","Overview of the Rhin-o-Tuff HD7000 punch binder.");
c++; item[c]=new Array("colibri.htm","Products/","Colibri Book Cover System","Colibri,colibri,col,book,covers,cover","Overview of the Colibri book cover system.");
c++; item[c]=new Array("supplies.htm","","Binder strips","supplies,superstrip, Superstrip,Lstrip,lstrip,L-strip,perfectback,temperature activated,TA,PS,LF,lay flat,pressure sensitive,l-strip,speedstrip,Speed,perfectback,binder,Binder,strips,Strips,Velobind,velobind,velostrips,personal,Personal,model,111","Strips for Fastback and VeloBind binding machines.");
c++; item[c]=new Array("Fax_Order_Form.htm","Docs/","Fax order form","fax,order,form,sales,order","Form for ordering supplies by fax.");
c++; item[c]=new Array("CustomerFax.doc","Docs/","Fax order form","fax,order,form,sales,order","Word version of form for ordering supplies by fax.");
c++; item[c]=new Array("covers.htm","Supplies/","supplies,binder covers","covers,standard,Foilfast,foilfast,poly,clear,halfback,Halfback,regency,Regency,paper,templates","Binder covers for use with binding machines, PowisPrinter or FoilFast printer.");
c++; item[c]=new Array("punch_supp.htm","Supplies/","Punch supplies","supplies,punch,punches,wire,wires,coil,coils,comb,combs,twin,Twin,loop,loops","Supplies for use with punch binders.");
c++; item[c]=new Array("lam.htm","Supplies/","Laminating supplies","supplies,film,lamination,laminate,laminating,pouch,card,business,credit,key,luggage,military,polaseal,IMB","Laminating film and supplies for use with laminators.");

page="<html><head><title>Search Results</title></head><body bgcolor='white'><center><table border=0 cellspacing=10 width=80%>";

function search(frm) {
win = window.open("","","scrollbars, toolbar,menubar,resizable");
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]].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,win,num) {
link = item[which][1] + item[which][0];
line = "<tr><td><a href='"+link+"'>"+item[which][2]+"</a><br>"; 
line += item[which][4] + "<br>"+link+"</td></tr>";
win.document.write(line);
return 1;
}