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"



//Main Pages

c=0; item[c]=new Array("index.htm","","BICO HOME","index,main,start,home,front,legal,statement,privacy,policy,solero,neopolitan,delifrance,delice,de,france,","We are the leading provider of premium brands of icecream and novelties in barbados.");

c++; item[c]=new Array("About_BICO.htm","","About BICO","about,1890,1964,1966,press,releases,annual,report,contact,form,pure,cold,storage,harbour,barrow,errol,premier,new,facilities,company,contact,form,ice,careers,opportunities,history,author,staff,contact,email,amalgamation,barbados,icecream,cold,storage","1890 - Manufacturers of Pure Ice...BICO began as the West Indies and British Guiana Ice Company Ltd in 1890 by Messrs. George Whitfield, at the corner of Victoria and Middle Street and was then described as Manufacturers of pure ice because they produced only ice..");

c++; item[c]=new Array("About_BICO2.htm","","About BICO","about,1890,1964,1966,press,releases,annual,report,contact,form,pure,cold,storage,harbour,barrow,errol,premier,new,facilities,company,contact,form,ice,careers,opportunities,history,author,staff,contact,email,amalgamation,barbados,icecream,cold,storage"," ");

c++; item[c]=new Array("About_BICO_contactform.htm","","BICO Contact Form","links,more,where,similar,friends","Links to my favourite sites which I find interesting. Other friends sites which have similar interests to my own.");

c++; item[c]=new Array("About_BICO_region.htm","","BICO in the region","about,history,contact,email,region,caribbean","Contact details and general information about the business and what the company is about.");





c++; item[c]=new Array("BICOProducts.htm","","BICO Products","email,order,fax,telephone,nestle,bon,novelties,walls,delifrance,delice,","Links to my favourite sites which I find interesting. Other friends sites which have similar interests to my own.");

c++; item[c]=new Array("BICOPartners.htm","","BICO Partners","business,opportunities,partners,bargains,benefits,success,habour,cold,store","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("BICOPromotions.htm","","BICO Promotions","order,promotions,promotion,specials,video,archive,benefits","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.");







c++; item[c]=new Array("Caribbean_distributors.htm","","BICO in the region","about,partners,contact,email,region,caribbean","Contact details and general information about the business and what the company is about.");



c++; item[c]=new Array("BICOProducts_Nestlenovelties.htm","","Novelties","novelties,sukafinga,drumstick,nesquik,carnation,chomp","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.");



//Galleries

c++; item[c]=new Array("BICOProducts_Nestle.htm","","Nestle","chocolate,vanill,cherry,almond,banana,passion,amaretto,almond","Nestlé is the world's leading Nutrition, Health and Wellness company. We are committed to increasing the nutritional value of our products while improving the taste.");

c++; item[c]=new Array("BICOProducts_Walls.htm","","Walls","walls,magnum,solero,twister,cornetto,callipo","ou can trust the Wall’s brand to provide you with a range of products for all occasions, from lighter versions and mini sizes, to old favourites. There really is something for everyone, making it easier for you to enjoy Wall’s ice cream as part of a balanced diet");

c++; item[c]=new Array("BICOProducts_Delicedefrance.htm","","Delicedefrance","delicedefrance,france,bread,breads","Contact details and general information about the business and what the company is about.");

c++; item[c]=new Array("BICOProducts_Bon.htm","","Bon","bon","Contact details and general information about the business and what the company is about.");

c++; item[c]=new Array("BICOProducts_Delifrance.htm","","Delifrance","bread,delifrance,breads,france","Contact details and general information about the business and what the company is about.");







page="<html><head><title>Search Results</title><link rel='SHORTCUT ICON'href='images/favicon.ico'></head><body background='images/BICOwatermark.jpg'><img src='images/BICO_favicon3.jpg'><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>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> Matched Words: "+num+"<br>";

line += item[which][4] + "<br>"+link+"</td></tr>";

wind.document.write(line);

return 1;

}



