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.
*/
//index page
// "Page Name","path","Page Title","Many,Key,Words","Descriptive Comments"//

c=0; item[c]=new Array("product_policy_writer_overview.htm","../pages/","Overview","Overview,and,SVT,Information,main,start,policy,Analysis,distributor","");
c++; item[c]=new Array("about.htm","../pages/","about","IT,services,Technology,IT Solutions,USA","");
c++; item[c]=new Array("about_advantage.htm","../pages/","SVT Advantage","SVT Advantage,Offshore Development,Managed Services","");
c++; item[c]=new Array("solutions.htm","../pages/","solutions","solutions,E-Business,Business,Needs Analysis,communication,Development,Application","");
c++; item[c]=new Array("product_policy_writer_overview.htm","../pages/","product policy writer overview","Overview,svt,Insurance,Distributor,product,Information","");
c++; item[c]=new Array("industries.htm","../pages/","industries","Telecom,and,Networking,Telecommunication,HIPERLAN/2,'Technology,B2C,B2B,ETSI,OSS,e-business","");
c++; item[c]=new Array("customers.htm","../pages/","customers","BANKING,customers,Cable Vision,USA,NETWORKING,IT CONSULTING,COURIER SERVICES,Johnson and Johnson,Tycom,Merrill Lynch","");
c++; item[c]=new Array("careers.htm","../pages/","careers, SanVision is Hiring!","careers,Hiring,SanVision","");
c++; item[c]=new Array("news.htm","../pages/","news","news,svt","");
c++; item[c]=new Array("about_executive_profile.htm","../pages/","executive profile","about executive,SanVision,profile,CEO,CFO,SWWT","");
c++; item[c]=new Array("product_policy_writer_design.htm","../pages/","Design and Architecture","Design,Architecture,High Level,Process,models,diagram,Flow","");
c++; item[c]=new Array("product_webtechnology.htm","../pages/","product webtechnology","product,webtechnology,SVT,Architectural,Services,iWeb","");
c++; item[c]=new Array("solutions_managed_service.htm","../pages/","solutions managed service","solutions,managed,systems,service,svt,applications","");
c++; item[c]=new Array("solutions_change_management.htm","../pages/","Change Management","Change Management,Management,outsourcing,svt","");	
c++; item[c]=new Array("industries_brokerage.htm","../pages/","Brokerage","Brokerage,Leadership,PDA,ATM,Strategic Services,Creative and Web development,Brand","");
c++; item[c]=new Array("customers_case.htm","../pages/","Case Studies","Case Studies,Application Development Projects,Web Based Surety Bond Underwriting Engine,Server Network Maintenance Application Support,Global Asset Management System,Total Outsourcing","");
c++; item[c]=new Array("industries_health.htm","../pages/","Health Care","Health Care,industries","");
c++; item[c]=new Array("industries_banking.htm","../pages/","Banking and Finance ","Banking and Finance,Revenue Growth,Straight-Through Processing,Risk Management,Business Consolidation,Integration Services,Business Information,Data warehousing,Business,turnkey,Systems","");
page="<html><head><script src='Search/search.js'></script><title>:::::::: SanVision Search Results ::::::::</title></head><body bgcolor='#000066' background='main.jpg'><center><table><img src='images/solutions_banner.jpg'></table><br><table border=0 cellspacing=10 width=80%>"+
"<form method=get action='javascript:void(0)' onsubmit='search(this); return false;'><INPUT type='text' name=srchval size='15'>"+
"<INPUT name='Search' type='image' class='button' value='Search' src='search.gif' alt='Search' width=78 height=21 border=0 cache></form>";


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><font color='#FF0000' size=3><b>SanVision SiteSearch</b></font><br><font color='#FFffff'>Search Terms should be in simple letters</font>");
win.document.write("<br><font color='#99CCCC' size='4'><strong><em>Total found:</strong></em></font><font color='#ffffff'>"+total+"</font></body></html>");
win.document.close();
}
function show(which,wind,num) {
link = item[which][1] + item[which][0]; 
//line = "<tr><td bgcolor=#CCCCCC><a href='"+link+"'>"+item[which][2]+"</a> Score: "+num+"<br>";
//line += item[which][4] + "<br>"+link+"</td></tr>";
line = "<tr><td background='/images/main.jpg'><a href='"+link+"'><font color='#99FFFF'>"+item[which][2]+"</font></a>";
line += item[which][4];
wind.document.write(line);
return 1;
}

