// ***********************************************************
// Java Script File to navigate bottom links and to update copyright  -   For  Root Level Pages
// ***********************************************************

var topNavigation="";
/*topNavigation=topNavigation+'<a href="Softwares/ProductsDemos.html">Demos</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';*/

topNavigation=topNavigation+'<a href="AboutUs.aspx">About Us</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';
topNavigation=topNavigation+'<a href="ContactUs.aspx">Contact Us</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';
topNavigation=topNavigation+'<a href="Enquiry.aspx">Enquiry</a>';
document.getElementById('spnTopNavigation').innerHTML=topNavigation;

var swadText="";
swadText=swadText+'S<font style="font-size:20px;">WAD</font> A<font style="font-size:20px;">TTA</font>';
document.getElementById('spnSwadText').innerHTML=swadText;


var copyright="";
copyright=copyright+"Copyright &copy; Sapna Flour Mills Limited., All Rights Reserved ";
document.getElementById('spnCopyright').innerHTML=copyright;


var bottomNavigation="";
bottomNavigation=bottomNavigation + '<a href="index.aspx">Home</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';
bottomNavigation=bottomNavigation + '<a href="Products.aspx">Products</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';
bottomNavigation=bottomNavigation + '<a href="Services.aspx">Services</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';
bottomNavigation=bottomNavigation + '<a href="Enquiry.aspx">Enquiry</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';
bottomNavigation=bottomNavigation + '<a href="Recipes.aspx">Recipes</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';
bottomNavigation=bottomNavigation + '<a href="PhotoGallery.aspx">Photo Gallery</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';
bottomNavigation=bottomNavigation + '<a href="AboutUs.aspx">About Us</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;';
bottomNavigation=bottomNavigation + '<a href="ContactUs.aspx">Contact Us</a>';

document.getElementById('spnBottomNavigation').innerHTML=bottomNavigation;
