
<!-- Begin
var item = new Array();


c=0; item[c]=new Array("merkem.html","","Merkem Home Page","company,index,main,start,home,front","Merkem offers complete Information Technology Solutions for your company.");
c++; item[c]=new Array("about_us.htm","","About Merkem","company,designers,audio,media,author,architecture,webdesign,who,physician,management,practice,medical,internet,database","Products, services, and general information about Merkem.");
c++; item[c]=new Array("contact_us.htm","","Contact Us","address,e-mail,email,location,directions,fax,facsimile,where,phone,team,employees","Company contact information:Names, address, telephone, fax, and e-mail.");
c++; item[c]=new Array("edu.htm","","Educate Yourself","learn,history,computers,network,LAN,ethernet","An education page always under construction! Come here to learn about the history of computers, the basics of networking technology, and more.");
c++; item[c]=new Array("products.htm","","Products","Products,Computers,Hardware,products,computers,hardware,software,hewlett,packard","The majority of our products you can find here.");
c++; item[c]=new Array("services.htm","","Services","Services,Web, Internet,Design,Media,services,web,internet,design,Programming,programming,Audio,audio,media,Flash,Photoshop,software,database,practice,physician,management,networks,ethernet,intel,remote","Services, services, services. Check out what we offer your company!");

c++; item[c]=new Array("paradigm.htm","/Paradigm/","Paradigm","Paradigm,paradigm,software,management,medical,practice,Millbrook,millbrook,billing,patient","Our introduction to the award-winning Paradigm software by the Millbrook Corporation. This software  enables physicians and billing services to manage all aspects of a medical practice.");
c++; item[c]=new Array("intel.htm","/Intel/","Intel products","Intel,intel,remote,IT,hardware,protection,network,proactive","We at Merkem strive to provide the best services to our clients. By using Intel's reliable hardware in conjunction with our network installations and IT management, we can do just that.");
c++; item[c]=new Array("intel_general.htm","/Intel/","Intel products","Intel,intel,remote,IT,hardware,protection,network,proactive","We at Merkem strive to provide the best services to our clients. By using Intel's reliable hardware in conjunction with our network installations and IT management, we can do just that.");

page="<html><head><title>Search Results</title></head><body bgcolor='black' text='#CCCCCC' link='#6666FF' vlink='#9999FF' alink='#CCCCFF'><font face='verdana size='-1'><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></font></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 -->
