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("Home.html","","Home","wasserstrom, Overview, Mission, Vision, Values, SrinSoft Edge, Partners, Application Management, Engineering Services, Product Development, Website Development, Software Testing, Business Process OutSourcing, IT Consulting, Center of Excellence , Business Verticals, Business Models, Technologies, Clientele, offshore development center, contact, download, cutting edge","SrinSoft is a one stop software development company for implementing..");

c++; item[c]=new Array("overview.html","","overview","Overview, Mission, Vision, Values, SrinSoft Edge, Partners, Application Management, Engineering Services, Product Development, Website Development, Software Testing, Business Process OutSourcing, IT Consulting, Center of Excellence , Business Verticals, Business Models, Technologies, Clientele, offshore development center, contact","Incorporated in 2005, we have our development facility in Chennai, the capital city of Tamilnadu, a land of colorful cultural fusion.We believe ..");

c++; item[c]=new Array("mission.html","","mission","strategy","To provide high quality strategic consulting, creative design and technology services. The purpose of SrinSoft is to honorably serve the needs ..");
c++; item[c]=new Array("vision.html","","vision","Global, Market, Share, Leader" ,"To provide high quality strategic consulting, creative design and technology services. SrinSoft Technologies is dedicated in becoming..");


c++; item[c]=new Array("values.html","","values","Global Approach, Reliability and Integrity, Creativity and Innovation","Our global thinking and action enables a diverse workforce that generates innovative decision-making for a broad spectrum.. ");

c++; item[c]=new Array("srinsoftedge.html","","Onshore, Offshore, Columbus, US, Chennai, India, Technical, excellence, Results,Driven, Infrastructure","SrinSoft has been delivering high-value offshore services - providing clients with Low-cost, high-quality, and exceptionally flexible solutions. With our approach..");

c++; item[c]=new Array("application.html","","application",".NET, IBM, I-series, (AS400), JBA, GEAC, system21","Our understanding of the information management challenges your company faces allows us to evaluate and improve ..");

c++; item[c]=new Array("productengineering.html","","productengineering","CAD, CAM, SPM","Engineering Services (ES) is one of SrinSoft's strategic businesses that provides end-to-end solutions globally to help clients maximize ..");

c++; item[c]=new Array("engineeringservices.html","","engineeringservices","CAD, CAM, Design, PLM","SrinSoft’s Center of CAD/CAM excellence has number of successful Design, Manufacturing and Automation project Implementation ");

c++; item[c]=new Array("MicrosoftTechnologies.html","","MicrosoftTechnologies","Microsoft, Technologies,  C#, VB.NET, ASP.NET, Visual Basic, ASP, SQL Server, 2000, 2005","Building/Re-engineering/Migrating sophisticated products using the cutting-edge Microsoft Technologies and releasing the products to.. ");
c++; item[c]=new Array("IBMiSeries.html","","IBMiSeries","AS, 400, Division, JBA, Conversion, Warehouse, Automation, ASNA, VRPG, SEQUEL, iSeries, .Net","SrinSoft has AS/400 experts with wide experience in all key domains such as Insurance, Banking, Manufacturing and Distribution..");
c++; item[c]=new Array("verticals.html","","verticals","Supply Chain Management,Hardware, Manufacturing, Software Product Development, Enterprise Resource Planning, E-procurement, Service Oriented Architecture, Software Integration, Workflow Automation, Office Automation Tools, Custom Software, Development, Document Management Software, Data capture Applications, Multimedia, Web Designing and Development, Project Management and Consulting" ,"The following is a list of Verticals SrinSoft has expertise in:  &#8226; Supply Chain Management ");
c++; item[c]=new Array("business.html","","business","Association Model, Delivery Model, ODC, Offshore Development Centre, Maintenance Models, Engagement Models, Onsite, Offsite, SLA" ,"Association Model: *#8226; Exclusive Offshore Development Centre (ODC)");
c++; item[c]=new Array("technologies.html","","technologies","AS/400,AS 400, SQL Server, CRM, .NET, OS/400, OS/2","SrinSoft's journey has covered large and complex data centre operations transitioning from legacy/mainframe..");
c++; item[c]=new Array("contact.html","","contact","US, SrinSoft, 2300, Lockbourne Road, Columbus, Ohio, 4327, USA, Tel, 4391 7100, Chennai, SrinSoft, Pvt, Ltd., 515A, East Coast Road, Kottivakkam, Chennai, 600 041, Tamilnadu, India (+91 44) 4391 7100, Tel: (+91 44)  2448 2042, Fax, (+91 44) 2432 8399","Receive more information on our products and services?");

page="<html><head><style type=text/css>.style1 {font-family:Tahoma;font-size:11px;width:100%;}</style><title>Search Results</title></head><body bgcolor='white'><div id=header style=position:absolute; top: 16px; left: 14px; height: 154px; width:100%;><table ><tr><td><img src=images/search.jpg /></td></tr></table></div><br/><br/><br/><br/><br/><br/><br/><br/><div id=lefter style=position:absolute; top: 400px; left: 346px; height: 448px; width: 100%;><center><table align=center class=style1 width=100% border=0>";
function search(frm) 
{

win = window.open('','', '' );
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]].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("<span class=style1> Searched the site for  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   <b><font color=gray > "+txt+"</font></b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Is Displayed Below  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href=home.html>  Back to Home Page</a><hr /><hr /><br/></table></center><br><b>Total Search Results found:</b>  "+total+"<br></span></div></body></html>");
win.document.close();
window.opener=blank;
window.close();

}
function show(which,wind,num) {
link = item[which][1] + item[which][0]; 
line = "<tr><td><a href='"+link+"'>"+item[which][2]+ "<br>" + "</a> ";
line += item[which][4] + "<br>"+link+"</td></tr>";
wind.document.write(line);
return 1;

}
//  End -->
