<!-- 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 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","","Home Page","index,main,start,home,front","HOME PAGE FOR THIS WEBSITE.");
c++; item[c]=new Array("Products.html","","Products","Products,SpectrumLX,Explorer,Navigator,Hardware,QuickPic,QuickSnap,Bio-FingerPrint,SafeCryptNet,Mverification,Mterminal,SpectrumNT,SpectrumSN,System 1088++,1088,Eagle,Visual,Verification,Station,Visual Verification Station","PRODUCT MAIN PAGE.");
c++; item[c]=new Array("SpectrumLX.html","","SpectrumLX","spectrumlx,explorer,navigator,hardware,enterprise,standalone,network","PRODUCTS ASSOCIATED WITH SPECTRUMLX.");
c++; item[c]=new Array("Support.html","","Support","help,support,frequently,asked,questions,faq,troubleshooting,trouble,problems,training,classes,tutorial,class","THE SUPPORT PAGE.");
c++; item[c]=new Array("NewsRoom.html","","News Room","news,press,releases,facts","NEWS ITEMS.");
c++; item[c]=new Array("Partners.html","","Partners","partners,invest,investment,dealer,retailer,wholesaler,integrator,integrater","PARTNERS, DEALERS AND INVESTOR INFORMATION.");
c++; item[c]=new Array("Company.html","","Company","contact,about,address,telephone,fax,email,","COMPANY CONTACT INFORMATION.");
c++; item[c]=new Array("BadgingSystem.html","","Badging","badging,badge,quickpic,quicksnap,id,card,identification","BADGING SOLUTIONS.");
c++; item[c]=new Array("Biometrics.html","","Biometrics","biometrics,bio,bio-metrics,fingerprint","BIOMETRIC SOLUTIONS.");
c++; item[c]=new Array("Mobile.html","","Mobile Solutions","mobile,mverification,mterminal,portable","MOBILE ACCESS CONTROL AND SECURITY SOLUTION.");
c++; item[c]=new Array("Legacy.html","","Legacy Products","spectrumnt,spectrumsn,system 1088++,1088,1088++,eagle,visual verification station,visual,verification,station,quickpic","LEGACY PRODUCTS.");
c++; item[c]=new Array("Hardware.html","","SpectrumLX Hardware","spp,aad,amd,mux","HARDWARE PANELS USED BY SPECTRUMLX.");
c++; item[c]=new Array("SPP-2.html","","SpectrumLX Hardware","spp","SPP","SPP HARDWARE PANELS USED BY SPECTRUMLX.");
c++; item[c]=new Array("AAD-6.html","","SpectrumLX Hardware","aad","AAD HARDWARE PANELS USED BY SPECTRUMLX.");
c++; item[c]=new Array("AMD-12.html","","SpectrumLX Hardware","amd","AMD HARDWARE PANELS USED BY SPECTRUMLX.");
c++; item[c]=new Array("MUX-Serial.html","","SpectrumLX Hardware","mux,serial","MUX-SERIAL HARDWARE PANEL USED BY SPECTRUMLX.");
c++; item[c]=new Array("Navigator.html","","SpectrumLX Navigator","spectrumlx,navigator,standard,enterprise","SPECTRUMLX SERIES.");
c++; item[c]=new Array("explorer.html","","SpectrumLX Explorer","spectrumlx,explorer,standalone,network","SPECTRUMLX SERIES.");

page="<html><head><title>Search Results</title></head><body bgcolor='white'><center>Use browser Back button if necessary to return to this Search Results page.<br><table border=0 cellspacing=10 width=80%>";


function search(frm) {
win = window.open("","","menubar,toolbar,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 -->

document.writeln('<form method=get action="javascript:void(0)" onsubmit="search(this); return false;">');
document.writeln('<input type=text name=srchval value=""><input type=submit value="Search"></form>');