<!-- 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
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","","AMLA MEDIQUIP Home Page","Lymphoedema,Venous Oedema,Vipel,Medical Software,Medic Aid","Innovations in health care - Software for doctors, Pneumatic Compression for Lymphatic and venous oedemas");
c++; item[c]=new Array("drgogia.html","","About Dr Gogia","about,author,contact,email,biodata","Contact details and general information about the creator of the site and what the site is about.");
c++; item[c]=new Array("Lymphbook.html","","Lymphoedema Book", "Filariasis,Lymphoedema,Treatment,Pneumatic Compression","Book Written by Dr Gogia about Lymphoedema management with reference to Lymphoedema");
c++; item[c]=new Array("vipel.html","","Vipel Pnematic Compression System","Lymphoedema, Venous Oedema,Healthcare Equipments","Pneumatic Compression for Lymphatic and venous oedemas.");
c++; item[c]=new Array("medicaid.html","","Medic Aid:Software for the Medical Profession","Medical,Software,Patients,database,Healthcare records,Medic Aid","Innovations in health care - Software for doctors");
c++; item[c]=new Array("handsurgery.html","","Our Plastic Surgery Facilities","Lymphoedema,Plastic Surgery,Hand Surgery","Plastic Surgery and related facilities at Sanwari Bai Surgical Centre");
c++; item[c]=new Array("lymphadv.html","","Helpful Hints for Lymphoedema","Lymphoedema,Venous Oedema,Pneumatic Compression,Advise","Helpful hints in managing Lymphatic and venous oedemas.");
c++; item[c]=new Array("docsoft.html","","Download of our Demo Version","Medical,Software, Downloads,Patient Database,Freeware,Medic Aid","Innovations in health care - Software for doctors.");
c++; item[c]=new Array("sbschd.html","","Sanwari Bai Surgical Centre","Nursing Home,Location,New Delhi,India","Our Nursing Home Details and how to reach us");
c++; item[c]=new Array("vipelnote.html","","Details of Vipel Pnematic Compression System","Lymphoedema,Venous Oedema,Healthcare Equipments","Detailed table mode description of VIPEL system");
c++; item[c]=new Array("vipeldetails.html","","Details of Vipel Pnematic Compression System","Lymphoedema,Venous Oedema,Healthcare Equipments,VIPEL","Detailed descriptive text of VIPEL system");
c++; item[c]=new Array("telemedicine.html","","Telemedicine","EHealth,Medical,Software, Downloads,Patient Database,Telemedicine,Medic Aid,Sathi","Innovations in health care - Software for doctors.");
c++; item[c]=new Array("sulow.html","","Slovac","Slow Suction,Machine,Vacuum Therapy,Chest Tube Drainage,Neonatal Intensive care,VAC","Used for continuos dainage of body caivities as well as Help Closure of Non healing Ulcers");

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");
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 -->