// ***********************************************************
// Java Script File to navigate bottom links and to update copyright  -   For  Root Level Pages
// ***********************************************************

var copyright="";
copyright=copyright+"Copyright &copy; Darshan Solutions Limited, All Rights Reserved";
document.getElementById('dvCopyRight').innerHTML=copyright;


var bottomNavigation="";
bottomNavigation=bottomNavigation + '<a href="index.html">Home</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="Solutions.html">Solutions</a>';
bottomNavigation=bottomNavigation + '&nbsp;&nbsp;&nbsp;&nbsp;<a href="Software.html">Software</a>&nbsp;&nbsp;&nbsp;&nbsp;';
bottomNavigation=bottomNavigation + '<a href="Services.html">Services</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="AboutUs.html"">About Us</a>';
bottomNavigation=bottomNavigation + '&nbsp;&nbsp;&nbsp;&nbsp; <a href="Partners.html">Partners</a>&nbsp;&nbsp;&nbsp;&nbsp;';
bottomNavigation=bottomNavigation + '<a href="Careers.html">Careers</a>&nbsp;&nbsp;&nbsp;&nbsp;   <a href="Contacts.html">Contact Us</a>';
document.getElementById('dvBottomNavigation').innerHTML=bottomNavigation;
