// *****************************************************************************************************************************
// Main Navigation Menu
// *****************************************************************************************************************************
function mainNavigation(strLocation)
{
	document.writeln("<div id=\"idMenu\">");
    document.writeln("    <ul class=\"clsLevel1\">");
    document.writeln("        <li><a href=\"" + strLocation + "index.htm\" class=\"clsLevel1\">Home</a></li>");
    document.writeln("        <li>");
    document.writeln("            <a href=\"" + strLocation + "companypages/about.htm\" class=\"clsLevel1\">Company</a>");
    document.writeln("            <ul class=\"clsLevel2\">");
    document.writeln("                <li class=\"clsMenuText\">");
    document.writeln("                    <a href=\"" + strLocation + "companypages/about.htm\">About ECSI</a>");
    document.writeln("                    <a href=\"" + strLocation + "companypages/management.htm\">Management</a>");
    document.writeln("                    <a href=\"" + strLocation + "companypages/corporategovernance.htm\">Corporate Governance</a>");
    document.writeln("                    <a href=\"" + strLocation + "companypages/projectsandpast.htm\">Project & Past Performances</a>");
    document.writeln("                    <a href=\"" + strLocation + "companypages/contact.htm\">Contact Us</a>");
    document.writeln("                    <a href=\"" + strLocation + "companypages/investorrelations.htm\">Investor Relations</a>");
    document.writeln("                    <a href=\"" + strLocation + "companypages/contracts.htm\">Contracts</a> ");
    document.writeln("                </li>");
    document.writeln("            </ul>");
    document.writeln("        </li>");
    document.writeln("        <li>");
    document.writeln("            <a href=\"" + strLocation + "servicespages/overview.htm\" class=\"clsLevel1\">Services</a>");
    document.writeln("            <ul class=\"clsLevel2\">");
    document.writeln("                <li class=\"clsMenuText\">");
    document.writeln("                    <a href=\"" + strLocation + "servicespages/sitesurvey.htm\">Site Survey</a>");
    document.writeln("                    <a href=\"" + strLocation + "servicespages/riskassessment.htm\">Risk Assessment</a>");
    document.writeln("                    <a href=\"" + strLocation + "servicespages/systemdesigninteg.htm\">System Design / Integration</a>");
    document.writeln("                </li>");
    document.writeln("            </ul>");
    document.writeln("        </li>");
    document.writeln("        <li>");
    document.writeln("            <a href=\"" + strLocation + "productpages/products.htm\" class=\"clsLevel1\">Products</a>");
    document.writeln("            <ul class=\"clsLevel2\">");
    document.writeln("                <li class=\"clsMenuText\"> ");
    document.writeln("                    <a href=\"" + strLocation + "productpages/sensingsys/sensingsys.htm\">Perimeter Intrusion Detection</a> ");
    document.writeln("                    <a href=\"" + strLocation + "productpages/entrycontrol.htm\">Entry Control for Vehicles &amp; Personnel</a> ");
    document.writeln("                    <a href=\"" + strLocation + "productpages/survandassess/survandassess.htm\">Surveillance and Assessments</a>");
    document.writeln("                    <a href=\"" + strLocation + "productpages/waterandnbcr.htm\">Water &amp; NBCR</a>");

    document.writeln("                    <a href=\"" + strLocation + "productpages/sensingsys/landatasecure.htm\">LanDataSecure</a>");
    document.writeln("                    <a href=\"" + strLocation + "productpages/commandandcontrol.htm\">Command and Control (IDMS)</a>");
    document.writeln("                    <a href=\"" + strLocation + "productpages/daynight.htm\">Day/Night Long-Range Camera</a>");
    document.writeln("                    <a href=\"" + strLocation + "productpages/antipiracy.htm\">Anti-Piracy Technology</a>");
    document.writeln("                </li>");
    document.writeln("            </ul>");
    document.writeln("        </li>");
    document.writeln("        <li>");
    document.writeln("            <a href=\"" + strLocation + "applicationpages/overview.htm\" class=\"clsLevel1\">Applications</a>");
    document.writeln("            <ul class=\"clsLevel2\">");
    document.writeln("                <li class=\"clsMenuText\"> ");
    document.writeln("                    <a href=\"" + strLocation + "applicationpages/defense.htm\">Defense-Military</a> ");
    document.writeln("                    <a href=\"" + strLocation + "applicationpages/energy.htm\">Nuclear</a> ");
    document.writeln("                    <a href=\"" + strLocation + "applicationpages/petrochemical.htm\">Petrochemical</a>");
    document.writeln("                    <a href=\"" + strLocation + "applicationpages/water.htm\">Maritime</a>");
    document.writeln("                    <a href=\"" + strLocation + "applicationpages/embassy.htm\">Aviation</a>");
    document.writeln("                    <a href=\"" + strLocation + "applicationpages/transportation.htm\">Transportation</a>");
    document.writeln("                    <a href=\"" + strLocation + "applicationpages/borders.htm\">Borders</a>"); 
    document.writeln("                    <a href=\"" + strLocation + "../productpages/entrycontrol.htm\">Entry Control</a>");
    document.writeln("                    <a href=\"" + strLocation + "../productpages/antipiracy.htm\">Anti-Piracy Technology</a>");
    document.writeln("                </li>");
    document.writeln("            </ul>");
    document.writeln("        </li>");
    document.writeln("        <li><a href=\"" + strLocation + "strategicpages/overview.htm\" class=\"clsLevel1\">Strategic Alliances</a></li>");
    document.writeln("        <li>");
    document.writeln("            <a href=\"" + strLocation + "companypages/investorrelations.htm\" class=\"clsLevel1\">Investor Relations</a>");

    document.writeln("        </li>");
    document.writeln("    </ul>");
    document.writeln("</div>");
}
