// JavaScript Document
var preLoad=new Image();
var imgeUrl = new Array();
imgeUrl[0]="http://www.davektech.com/images/backgrounds/navBg_over.jpg";
imgeUrl[1]="http://www.davektech.com/images/backgrounds/navPopupBg.jpg";

       var i = 0;
       for(i=0; i<2; i++) 
         preLoad.src = imgeUrl[i];
		 
//search code

/*

   -----------------------------------------------------------------------------------------------
   ** Original Copyright 
   -----------------------------------------------------------------------------------------------
   This Script was created by Satadip Dutta. 
   Email: sat_dutta@post1.com  / satadipd@inf.com 
   URL:http://dutta.home.ml.org
   Version 1.1-IExp 
   
   Please honor my hard work, if you use a variant of this in your page, 
   then please email me :) and keep these comments in the Script.

   This code is Copyright (c) 1997 Satadip Dutta all rights reserved.

   License is granted to user to reuse this code on their own Web site 
   if, and only if, this entire copyright notice is included. The Web Site
   containing this  script   must be a not-for-profit ( non-commercial ) web site. 
   Exclusive written permission must be obtained before using  this version of the search engine

   -----------------------------------------------------------------------------------------------
   ** Supplemental Copyright
   -----------------------------------------------------------------------------------------------
   Modifications to search logic, .js encapsulation, and cross-browser compatibility
   added by John Cokos, iWeb Inc.  May 2002.
      Copyright (x) 2002, iWeb Inc.   http://www.iwebtechnology.com / http://www.iwebtoolkit.com
   -----------------------------------------------------------------------------------------------
*/



    ttl = new Object();
    desc = new Object();
    keys = new Object();
    links= new Object();    
    matched= new Object();    
    kwords= new Object();
    found= new Object();
    temp=0;
    kwords[0]=0;
    found[0]=0;
    output = '';
    var skeyword;
	
	function globalSearch(){
		gs=true;
        temp=0;
        kwords[0]=0;
        found[0]=0;
        output = '';
		skeyword=document.forms['searchengine'].keywords.value.toLowerCase();
		if(skeyword!='')
	        do_search();
		else
			output = '<p>Please Enter a Search Key.</p>'
        show_output();


        return false;
	}
	
    function search() {
		gs=false;
        temp=0;
        kwords[0]=0;
        found[0]=0;
        output = '';
		skeyword=document.forms['searchengine2'].keywords2.value.toLowerCase();
	
		if(skeyword!='')
	        do_search();
		else
			output = '<p>Please Enter a Search Key.</p>'
        show_output();


        return false;
    }


    function do_search(){

        var check=1;
        var pos=0;
        var i=0;
        var j=0;
        var itemp=0;
        var config='';

        while (true) {
            if (skeyword.indexOf("+") == -1 ) {
                kwords[check]=skeyword;
                break;
            }
            pos=skeyword.indexOf("+");
            if (skeyword !="+")	 {
                kwords[check]=skeyword.substring(0,pos);
                check++;
            }
            else {
                check--;
                break;
            }
            skeyword=skeyword.substring(pos+1, skeyword.length);	
            if (skeyword.length ==0) {
                check--;
                break;
            }

        }

        // the keywords have been put in keywords object.
        kwords[0]=check;

        // matching and storing the matches in matched
        for ( i=1; i<=kwords[0];i++) {
            for (j=1;j<=num_titles;j++) {
                if ( keys[j].toLowerCase().indexOf(kwords[i]) > -1 || ttl[j].toLowerCase().indexOf(kwords[i]) > -1 || desc[j].toLowerCase().indexOf(kwords[i]) > -1) {
                    matched[j]++;
                }
            }	
        }


        // putting all the indexes of the matched records  in found
        for (i=1;i<=num_titles;i++) {
            if (matched[i] > 0 ) {
                found[0]++;
                // increment the found 	
                found[found[0]]=i;
            }	
        }



        for (i=1;i<=found[0]-1;i++) {
            for(j=i+1;j<=found[0];j++) {
                if ( matched[found[i]]< matched[found[j]] ) {
                    temp= found[j];
                    found[j]=found[i];
                    found[i]=temp;
                }
            }
        }

        // end of sort

        // SEARCH HEADER //
        output = output + 'Search Results for: <B>';    
        for (i=1;  i<=kwords[0]; i++) {
            output = output +  kwords[i].bold() + "   ";
        }
        output = output + '</B>';

        // No Results //
        if (found[0]==0) {
            output = output + "<HR><BR><BR><b>No matches resulted in this search </b> <br>";
            output = output + "You may close the results and reduce the length/number  of the keywords  <br>";
        }

        // Results Found //
        else {
            
            output = output + "[" + found[0] + "  Matches  " . italics();
            output = output + "]<HR><BR><OL>";

            for (i=1; i<=found[0];i++) {
                output = output + "<LI>";
                itemp=found[i];
                output = output + ttl[itemp].bold() + "<br>";
                output = output + desc[itemp] + "<br><b><font color=\'#000000\'>";
                output = output + links[itemp].link(links[itemp])+"</font></b><br>";
                temp= (matched[itemp]/kwords[0])*100
                output = output + "<i>" +temp+" %  </i><P>" ;
                matched[itemp]=0
            } 
            found[0]=0;
            output = output + "</OL>";
        }

    }

    function show_output() { 

            var NS4 = (document.layers) ? 1 : 0;
            var IE = (document.all) ? 1 : 0;
            var DOM = 0; 
            var Opera = 0;

            if (parseInt(navigator.appVersion) >=5) {DOM=1};

            if ( (navigator.userAgent.indexOf("Opera 6")!=-1) || (navigator.userAgent.indexOf("Opera/6")!=-1) ) {
                 DOM = 0;
                 IE = 0;
                 Opera = 1;
            }

            target=('SEARCHOUT');
               
                if (DOM || IE) {
                    var out = document.getElementById(target);
                    out.innerHTML = output;
                }
                    
                else if (NS4 || Opera) {
                    config='height=400,width=400,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes'
                    win = window.open ("","outputwindow",config)
                    win.document.open();
                    win.document.write(output);
                    win.document.close();
                }
                    
                // && (version >=4)
                else {
                    alert("get a real browser");
                }


            }

// data code

/*

   This is a sample data file to power the search engine.   You can build your own data file by hand,
   if you choose, just stick to the array structure below.  If you're lazy, like we are, just point
   your browser at http://www.iwebtoolkit.com/tools/website-search/code.html and we'll spider your 
   website for you, and this file will be created automatically.

   Copyright 2002, iWeb Inc.   http://www.iwebtechnology.com / http://www.iwebtoolkit.com

*/

num_titles = 6;

ttl[1] = 'Davek Technologies'
links[1] = 'http://www.davektech.com/'
desc[1] = 'The company mainly focus on Design, Development, Installation, Commissioning, Maintenance.Systems Integration and Consulting in Engineering, Industrial Automation, Electrical & Instrumention, Telecom and Embedded System Domains.'
keys[1] = 'Design,Development,Installation,Commissioning, Maintenance,Systems Integration and Consulting in Engineering,Industrial Automation,Electrical & Instrumention,Telecom and Embedded System Domains'
matched[1]=0

ttl[2] = 'About DAVEK Technologies'
links[2] = 'http://www.davektech.com/aboutus.html'
desc[2] = 'DAVEK was founded in the year 1999, by young technocrats with the vast industry experience & with a single mission to provide our customers quality engineering products and services by understanding their business requirements and run time needs.'
keys[2] ='technocrats,quality engineering products,services,design services,consulting organization,Hyderabad,Bangalore,CSE Semaphore,Maple Systems,Indusoft,BSS Technologies,Davek BuildNET,Tvisha Technologies,Sunny Integrated Solutions Private Ltd,SCADA,RTU System,kingfisher,T-BOX brands,Master Distributor,manufacture,design,industrial software products,Cathodic Protection,Corrosion Control Engineering Services,Instruments,Guardian Angle,Voice Over IP (VoIP),IP Telephony,Netwrok Security & Audit,Virtual Private Network (VPN),Wireless,Enterprise Networks,Storage Area Networks (SAN),Infrastructure,Facilities,Dubai,Director General,Export Inport code,Corrosion Engineering,BSS Tech'
matched[2]=0

ttl[3] = 'Services'
links[3] = 'http://www.davektech.com/services.html'
desc[3] = 'DAVEK offers its wide range of services primarily in following verticals'
keys[3] ='Consultancy Services,Project Management Services,Engineering Services,Installation & Commissioning Services,Electrical & Instrumentation Services,Automation Services,Embedded Systems Services,Telecom Services,Consultancy Services,design specifications,Project Management ServicesManagement,Management,co-ordination,Procurement,Inspection / Expediting,Construction Management,Quality and safety assurance,Commissioning Assistance,Training of Operating PersonnelEngineering Services,Feasibility Study,Basic Engineering,Extended Basic Engineering & FEED Package,Detailed Engineering,Requirement Specifications,Functional requirement & design specifications,Installation,Commissioning Services,Turn-key services,Commissioning and start-up assistance,Electrical,Instrumentation Services,Lighting and Earthing Layouts,Design Basis,System Integration,Safety Systems,Fire and Gas Systems,MMI/SCADA application design,Installation, Commissioning,Re-engineering,Documentation,Customer Training,Annual Maintenance Contract,Embedded System Services,Prototyping,Product Testing,Testing,Telecom Services,Enterprise Networks,Storage Area Networks (SAN),Voice Over IP (VoIP),Consultancy,design'
matched[3]=0


ttl[4] = 'Products'
links[4] = 'http://www.davektech.com/products.html'
desc[4] = 'Kingfisher and T-BOX brands Semaphore offers the first IP-based SCADA RTU solutions that enable complete integration of SCADA, control, and communications functionality in one rugged package. Our simple yet powerful products leverage easy-to-use Web technologies and inexpensive public networks. They are easy to configure and offer dramatically reduced costs versus traditional PLC / SCADA systems.'
keys[4] ='SCADA Systems,SCADA RTU Products,Semaphore,Kingfisher,T-BOX brands,Semaphore,PLC / SCADA,innovative push technology,embedded programming,Modular architecture,Flexibility,communications protocol,installation,G3 Remote I/O,Accessory Products,G3 DIN Rail Bracket,Semaphore S20 SHDSL modem' 
matched[4]=0


ttl[5] = 'Applications'
links[5] = 'http://www.davektech.com/products.html'
desc[5] = 'Semaphore products are currently operating in thousands of automation and remote monitoring installations throughout the world. Their robust electronics and rugged packaging allow years of reliable service -- even in the most remote areas.Yet, they are equally effective in office environment applications such as energy management.'
keys[5] ='Applications,Semaphore products,software tools,communications networking,hardware platforms,Systems integrators,maintenance,Water and Wastewater,filtration control,Pump station control,range/outdoor environment operation,alarm management,data logging,Oil,Gas,Pipelines/transmission systems,Storage facilities,Process/separation plants,Local distribution utility companies,Alarming, audit trail,historical archiving,Redundant configurations,Origin Energy,Distrigas of Belgium,Dolphin Energy,Enerco Gas,Energy, Building, Facility Management,RTU,SCADA,Kingfisher,T-BOX,Sequence of events (SOE),Power Generation, Transmission and Distribution,ETAP,Isolated communications,System-wide clock synchronization,Data Logger,TransGrid Substation,Transportation,Electrical supply,Aerobridge monitoring,highways ,railways,airports,safety monitoring,Rail positioning,Signal light monitoring,Traction control/rail electrification,Tunnel lighting control,Swiss Railway System,Airservices Australia'
matched[5]=0


ttl[6] = 'Contact Us'
links[6] = ''
desc[6] = 'Davek Technologies Private Limited,Plot No.267,S-215, 2nd Floor,Vertex Pearl Complex, Opp.Andhra Bank,Srinivasa Nagar Colony, Kapra,'
keys[6] ='address,contact,contact us,india,location,india address,'  
matched[6]=0

// data code ends



// search code ends

if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) //test for MSIE x.x;
 var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
 	if(ieversion<=6)
		document.writeln("<link type='text/css' rel='stylesheet' href='ie6.css'  />");
		
	if(screen.width <= 1024){
		if(screen.width==800)
			alert("This website can be best viewed in 1024 X 768 resolution or higher");
 		document.writeln("<link type='text/css' rel='stylesheet' href='screen_1024.css'  />");
	}else
		document.writeln("<link type='text/css' rel='stylesheet' href='screen_above_1024.css'  />");	

	


window.onload=function(){
	
	if (document.all&&document.getElementById) {
navRoot = document.getElementById("mainNav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }

	
/*	if(ieversion<7)
		document.getElementById("browser").style.display="block";		

	if(screen.width < 1024)
	document.getElementById("screen").style.display="block";
*/}

// Menu Sliding Code

$(function(){
	
	 
	$("div#navigations ul#mainNav > li:nth-child(3)").hover(function(){ $("#aboutus").slideDown("fast");},function(){ $("#aboutus").slideUp("fast");});
	$("div#navigations ul#mainNav > li:nth-child(5)").hover(function(){ $("#services").slideDown("fast");},function(){ $("#services").slideUp("fast");});
	$("div#navigations ul#mainNav > li:nth-child(7)").hover(function(){ $("#products").slideDown("fast");},function(){ $("#products").slideUp("fast");});	
	$("div#navigations ul#mainNav > li:nth-child(9)").hover(function(){ $("#applications").slideDown("fast");},function(){ $("#applications").slideUp("fast");});
	$("div#navigations ul#mainNav > li:nth-child(11)").hover(function(){ $("#projects").slideDown("fast");},function(){ $("#projects").slideUp("fast");});	
	});


var header="<div id='topBg'><ul><li id='home'><a href='index.html'>Home</a></li><li id='contact'><a href='contactus.html'>Contact Us</a></li><li id='sitemap'><a href='sitemap.html'>Sitemap</a></li></ul></div><div id='header'><div id=\"leftSide\">&nbsp;</div><div id=\"rightSide\">&nbsp;</div><div id=\"animArea\">  <script type=\"text/javascript\">AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','792','height','110','src','http://www.davektech.com/media/heder','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','http://www.davektech.com/media/heder' ); //end AC code  </script>  <noscript>  <object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0\" width=\"792\" height=\"110\">    <param name=\"movie\" value=\"http://www.davektech.com/media/heder.swf\" />    <param name=\"quality\" value=\"high\" />    <embed src=\"media/heder.swf\" quality=\"high\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"792\" height=\"110\"></embed>  </object>  </noscript></div><div id=\"navigations\"><ul id=\"mainNav\"><li><a href=\"http://www.davektech.com/index.html\"><img src=\"http://www.davektech.com/images/backgrounds/home.png\" width=\"39\" height=\"16\" /></a> </li> <li class=\"naviSep\">&nbsp;</li><li><a href=\"aboutus.html?sec=ab\"><img src=\"http://www.davektech.com/images/backgrounds/aboutUs.png\" width=\"62\" height=\"16\" /></a>	<ul id=\"aboutus\">		<li><a href=\"aboutus.html?sec=ac\">Associated Companies</a></li>        <li><a href=\"aboutus.html?sec=in\" class=\"bottomBg\">Infrastructure</a></li> 	</ul></li>        <li class=\"naviSep\">&nbsp;</li><li><a href=\"services.html?sec=ser\" onclick=\"globalNav('services.html','ser','services');return false;\"><img src=\"http://www.davektech.com/images/backgrounds/services.png\" width=\"54\" height=\"16\" /></a>	<ul id=\"services\">		<li><a href=\"services.html?sec=ct\">Consultancy Services</a></li>    	<li><a href=\"services.html?sec=pm\">Project Management Services</a></li>        <li><a href=\"services.html?sec=es\">Engineering Services</a></li>    	<li><a href=\"services.html?sec=ic\">I &amp; C Services</a></li>    	<li><a href=\"services.html?sec=ei\">E &amp; I Services</a></li>    	<li><a href=\"services.html?sec=am\">Automation Services</a></li>    	<li><a href=\"services.html?sec=eb\">Embedded System Services</a></li>    	<li><a href=\"services.html?sec=tc\" class=\"bottomBg\">Telecom Services</a></li><li><a href=\"services.html?sec=if\">IT Infrastructure Services</a></li><li><a href=\"services.html?sec=is\">IT Services</a></li></ul></li><li class=\"naviSep\">&nbsp;</li><li><a href=\"products.html\"><img src=\"http://www.davektech.com/images/backgrounds/products.png\" width=\"58\" height=\"16\" /></a>	<ul id=\"products\">		<li><a href=\"tboxpone.html\">T-Box</a></li><li><a href=\"kingfisher.html\">Kingfisher</a></li><li><a href=\"semaphore.html\">Semaphore</a></li><li><a href=\"pipeman.html\">PipeMan</a></li><li><a href=\"kspgroup.html\">Kaspro Group</a></li><li><a href=\"maplesys.html\">Maple Systems</a></li><li><a href=\"indusoft.html\">InduSoft</a></li><li><a href=\"trespart.html\" class=\"bottomBg\">Trescendo</a></li>	</ul>        </li><li class=\"naviSep\">&nbsp;</li><li><a href=\"applications.html?sec=ap\" onclick=\"globalNav('applications.html','ap','applications');return false;\"><img src=\"http://www.davektech.com/images/backgrounds/applications.png\" width=\"82\" height=\"16\" /></a>	<ul id=\"applications\">    	<li><a href=\"applications.html?sec=ww\">Water / Waste Water</a></li>        <li><a href=\"applications.html?sec=og\">Oil &amp; Gas</a></li>        <li><a href=\"applications.html?sec=em\">Energy Management</a></li>        <li><a href=\"applications.html?sec=tb\">Telecom / Broadcast</a></li>        <li><a href=\"applications.html?sec=pw\">Power</a></li>        <li><a href=\"applications.html?sec=tp\" class=\"bottomBg\">Transportation</a></li>	</ul>        </li><li class=\"naviSep\">&nbsp;</li><li><a href=\"projects.html\"><img src=\"http://www.davektech.com/images/backgrounds/projects.png\" width=\"53\" height=\"16\" /></a><ul id=\"projects\"><li><a href=\"projects.html\">Project1</a></li><li><a href=\"projects.html\">Project2</a></li><li><a href=\"projects.html\">Project3</a></li><li><a href=\"projects.html\">Project4</a></li><li><a href=\"projects.html\">Project5</a></li><li><a href=\"projects.html\">Project6</a></li><li><a href=\"projects.html\">Project7</a></li><li><a href=\"projects.html\">Project8</a></li><li><a href=\"projects.html\">Project9</a></li><li><a href=\"projects.html\">Project10</a></li></ul> </li><li class=\"naviSep\">&nbsp;</li><li><a href=\"contactus.html\"><img src=\"http://www.davektech.com/images/backgrounds/contactUs.png\" width=\"73\" height=\"16\" /></a></li><li class=\"naviSep\">&nbsp;</li><li><a href=\"inforequest.aspx\"><img src=\"http://www.davektech.com/images/backgrounds/enquireForm.png\" /></a></li></ul><form action=\"searchresults.html\" name=\"searchengine\" id=\"searchForm\"><input type=\"text\" name=\"keywords\" size=\"20\" id=\"srField\" value=\"Search\" onclick=\"javascript:this.value='';\" /><div id=\"searchBtn\"><a href=\"searchresults.html\" onclick=\"document.forms['searchengine'].submit();return false;\">Search</a></div>  </div></form><a href='index.html'><img src=\"http://www.davektech.com/images/backgrounds/logo.png\" alt=\"Davek Technologies\" width=\"200\" height=\"140\" id=\"logo\" /></a></div>";

var footer="<div id='footer'><div id='footerLeft'>&nbsp;</div><div id='footerCenter'><ul><li><a href='index.html'>Home</a></li><li><a href='contactus.html'>Contact Us</a></li><li><a href='termsofuse.html'>Terms of Use</a></li><li><a href='sitemap.html'>Sitemap</a></li></ul></div><div id='footerRight'>&nbsp;</div><!--<div id='browser' style='display:none'>This website can be best viewed in IE 7 or later. <a href='http://www.microsoft.com/downloads/en/resultsForProduct.aspx?displaylang=en&ProductID=5a8bb164-5fc3-4be5-95bb-ba73eeed1ca6' target='_blank'>Click here</a> to upgrade your browser.</div><div id='screen' style='display:none'>This website can be best viewed in 1024 X 768 resolution.</div></div>--><h5 class='copyright'>&copy; 1999-2009 daVek Technologies. All Rights Reserved. <span>Web site Designed and Developed by: <a href='http://www.tulasitechnologies.com' target='_blank'>Tulasi Technologies, Inc.</a></span></h5>";

var header2="<div id='topBg'><ul><li id='home'><a href='index.html'>Home</a></li><li id='contact'><a href='contactus.html'>Contact Us</a></li><li id='sitemap'><a href='sitemap.html'>Sitemap</a></li></ul></div><div id='header'><div id=\"leftSide\">&nbsp;</div><div id=\"rightSide\">&nbsp;</div><div id=\"animArea\">  <script type=\"text/javascript\">AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','722','height','110','src','http://www.davektech.com/media/heder','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','http://www.davektech.com/media/header_1024' ); //end AC code  </script>  <noscript>  <object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0\" width=\"722\" height=\"110\">    <param name=\"movie\" value=\"http://www.davektech.com/media/header_1024.swf\" />    <param name=\"quality\" value=\"high\" />    <embed src=\"media/header_1024.swf\" quality=\"high\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"722\" height=\"110\"></embed>  </object>  </noscript></div><div id=\"navigations\"><ul id=\"mainNav\"><li><a href=\"http://www.davektech.com/index.html\"><img src=\"http://www.davektech.com/images/backgrounds/home.png\" width=\"39\" height=\"16\" /></a> </li> <li class=\"naviSep\">&nbsp;</li><li><a href=\"aboutus.html?sec=ab\"><img src=\"http://www.davektech.com/images/backgrounds/aboutUs.png\" width=\"62\" height=\"16\" /></a>	<ul id=\"aboutus\">		<li><a href=\"aboutus.html?sec=ac\">Associated Companies</a></li>        <li><a href=\"aboutus.html?sec=in\" class=\"bottomBg\">Infrastructure</a></li> 	</ul></li>        <li class=\"naviSep\">&nbsp;</li><li><a href=\"services.html?sec=ser\" onclick=\"globalNav('services.html','ser','services');return false;\"><img src=\"http://www.davektech.com/images/backgrounds/services.png\" width=\"54\" height=\"16\" /></a>	<ul id=\"services\">		<li><a href=\"services.html?sec=ct\">Consultancy Services</a></li>    	<li><a href=\"services.html?sec=pm\">Project Management Services</a></li>        <li><a href=\"services.html?sec=es\">Engineering Services</a></li>    	<li><a href=\"services.html?sec=ic\">I &amp; C Services</a></li>    	<li><a href=\"services.html?sec=ei\">E &amp; I Services</a></li>    	<li><a href=\"services.html?sec=am\">Automation Services</a></li>    	<li><a href=\"services.html?sec=eb\">Embedded System Services</a></li>    	<li><a href=\"services.html?sec=tc\" class=\"bottomBg\">Telecom Services</a></li><li><a href=\"services.html?sec=if\">IT Infrastructure Services</a></li><li><a href=\"services.html?sec=is\">IT Services</a></li></ul></li><li class=\"naviSep\">&nbsp;</li><li><a href=\"products.html\"><img src=\"http://www.davektech.com/images/backgrounds/products.png\" width=\"58\" height=\"16\" /></a>	<ul id=\"products\">		<li><a href=\"tboxpone.html\">T-Box</a></li><li><a href=\"kingfisher.html\">Kingfisher</a></li><li><a href=\"semaphore.html\">Semaphore</a></li><li><a href=\"pipeman.html\">PipeMan</a></li><li><a href=\"kspgroup.html\">Kaspro Group</a></li><li><a href=\"maplesys.html\">Maple Systems</a></li><li><a href=\"indusoft.html\">InduSoft</a></li><li><a href=\"trespart.html\" class=\"bottomBg\">Trescendo</a></li>	</ul>        </li><li class=\"naviSep\">&nbsp;</li><li><a href=\"applications.html?sec=ap\" onclick=\"globalNav('applications.html','ap','applications');return false;\"><img src=\"http://www.davektech.com/images/backgrounds/applications.png\" width=\"82\" height=\"16\" /></a>	<ul id=\"applications\">    	<li><a href=\"applications.html?sec=ww\">Water / Waste Water</a></li>        <li><a href=\"applications.html?sec=og\">Oil &amp; Gas</a></li>        <li><a href=\"applications.html?sec=em\">Energy Management</a></li>        <li><a href=\"applications.html?sec=tb\">Telecom / Broadcast</a></li>        <li><a href=\"applications.html?sec=pw\">Power</a></li>        <li><a href=\"applications.html?sec=tp\" class=\"bottomBg\">Transportation</a></li>	</ul>        </li><li class=\"naviSep\">&nbsp;</li><li><a href=\"projects.html\"><img src=\"http://www.davektech.com/images/backgrounds/projects.png\" width=\"53\" height=\"16\" /></a><ul id=\"projects\"><li><a href=\"projects.html\">Project1</a></li><li><a href=\"projects.html\">Project2</a></li><li><a href=\"projects.html\">Project3</a></li><li><a href=\"projects.html\">Project4</a></li><li><a href=\"projects.html\">Project5</a></li><li><a href=\"projects.html\">Project6</a></li><li><a href=\"projects.html\">Project7</a></li><li><a href=\"projects.html\">Project8</a></li><li><a href=\"projects.html\">Project9</a></li><li><a href=\"projects.html\">Project10</a></li></ul> </li><li class=\"naviSep\">&nbsp;</li><li><a href=\"contactus.html\"><img src=\"http://www.davektech.com/images/backgrounds/contactUs.png\" width=\"73\" height=\"16\" /></a></li><li class=\"naviSep\">&nbsp;</li><li><a href=\"inforequest.aspx\"><img src=\"http://www.davektech.com/images/backgrounds/enquireForm.png\" /></a></li></ul><form action=\"searchresults.html\" name=\"searchengine\" id=\"searchForm\"><input type=\"text\" name=\"keywords\" size=\"20\" id=\"srField\" value=\"Search\" onclick=\"javascript:this.value='';\" /><div id=\"searchBtn\"><a href=\"searchresults.html\" onclick=\"document.forms['searchengine'].submit();return false;\">Search</a></div>  </div></form><a href='index.html'><img src=\"http://www.davektech.com/images/backgrounds/logo.png\" alt=\"Davek Technologies\" width=\"200\" height=\"140\" id=\"logo\" /></a></div>";

if(screen.width <= 1024)
	header=header2;
