// JavaScript Document

function navi()
{
document.writeln('<div class="maincontainer">');
document.writeln('<div class="navicontainer">');
document.writeln('<ul>');
document.writeln('<li id="menu-company">');
document.writeln('<a href="company.html" title="Company">Company</a>');
document.writeln('</li>');
document.writeln('<li id="menu-services">');
document.writeln('<a href="services.html" title="Services">Services</a>');
document.writeln('</li>');
document.writeln('<li id="menu-projects">');
document.writeln('<a href="projects.html" title="Projects">Projects</a>');
document.writeln('</li>');
document.writeln('<li id="menu-training">');
document.writeln('<a href="education.html" title="Education">Education</a>');
document.writeln('</li>');
document.writeln('<li id="menu-edocs">');
document.writeln('<a href="edocs.html" title="E-Docs">E-Docs</a>');
document.writeln('</li>');
document.writeln('<li id="menu-news">');
document.writeln('<a href="news.html" title="News">News</a>');
document.writeln('</li>');
document.writeln('</ul>');
document.writeln('</div>');
document.writeln('</div>');
}

function footer()
{
document.writeln('<div class="maincontainer">');
document.writeln('<div class="pageBar ulBlock">');
document.writeln('<ul>');
document.writeln('<li><a href="index.html" title="Home">Home</a> | </li>');
document.writeln('<li><a href="company.html" title="Company">Company</a> | </li>');
document.writeln('<li><a href="services.html" title="Services">Services</a> | </li>');
document.writeln('<li><a href="projects.html" title="Projects">Projects</a> | </li>');
document.writeln('<li><a href="education.html" title="Education">Education</a> | </li>');
document.writeln('<li><a href="edocs.html" title="E-Docs">E-Docs</a> | </li>');
document.writeln('<li><a href="news.html" title="News">News</a> | </li>');
document.writeln('<li><a href="contact.html" title="Contact Us">Contact Us</a> | </li>');
document.writeln('<li><a href="request.html" title="Service Request">Service Request</a> | </li>');
document.writeln('<li><a href="sitemap.html" title="Site map">Site map</a></li>');
document.writeln('</ul>');
document.writeln('</div>');
document.writeln('</div>');
document.writeln('<div class="maincontainer textBlack">');
document.writeln('<div class="textCenter">');
document.writeln('Copyright 2009 by <a href="http://www.geosys.co.in" title="GEOSYS ENTERPRISE SOLUTIONS">GEOSYS ENTERPRISE SOLUTIONS.</a> | <a href="terms.html" title="Terms of services">Terms Of Use</a> | <a href="privacy.html" title="Privacy Statement">Privacy Statement</a>');
document.writeln('</div>');
document.writeln('<div class="clearBoth"></div>');
document.writeln('<div class="textWhite textCenter">');
document.writeln('Site best viewed in 800 X 600 resolution and above');
document.writeln('</div>');
document.writeln('</div>');
}


