/* nav.js */

/*
 * Creates the E-Script Support drop down menu for the home page and the info post page
 * and enables/disables Customer Activities link depending on java installation
 */
function navLinks(){
    var java6Installed = 0;

    if (deployJava.versionCheck("1.6.0*")) {
        java6Installed = 1;
    }
    document.writeln('<div id="drop-down-support" class="drop-down-menu closed" style="right:180px;width:200px">');
    document.writeln('<ul><li><a href="/servlet/ForceDownloadServlet?file=/doc/ESCRIPT_Installation_Guide.pdf">Installation Instructions</a></li>');
    document.writeln('<li><a href="/servlet/ForceDownloadServlet?file=/doc/ESCRIPT_Troubleshooting_Guide.pdf" >Troubleshooting Guide</a></li>');
    document.writeln('<li><b>Helpline: (800) 895-8899</b></li>');
    document.write("<li><a title='Click to install Java Runtime 1.6.0_11' href='/download/jre-6u11-windows-i586-p.exe'>Install Required Java</a></li>");
    document.writeln('</ul></div>');
     //Create link to jnlp if correct version of java is installed
    if (java6Installed) {
        document.getElementById("activities").setAttribute("href", "/escript2.jnlp");
        document.getElementById("activities").setAttribute("title", "Launch E-Script 2.0");
    } else {
        //Create drop down informing user to install correct version of java
        document.getElementById("activities").style.color = "#999999";
        //document.getElementById("activities").setAttribute("title","You must have Java 6 installed to run E-SCRIPT 2.0");
        document.writeln('<div id="drop-down-activities" class="drop-down-menu closed" style="right:0px;width:300px;font-size:.80em;">');
        document.write('Java 6 is required to run E-Script 2.0.  In order to install E-Script on your workstation, Administrative Rights will be required.'
        +' Installation instructions as well as the steps required to determine if you have Administrative Rights to your workstation are included'+
        ' in the <span style="font-style:italic;font-weight:bold">Installation Instructions</span> located under the E-Script Support tab located on the Informational Postings web site.');
        document.writeln('</div>');
    }
}

/*
 * Writes footer for home page and info post page
 */
function footer(){
    document.write('<div id="band-general-navigation">');
    document.write('<ul>');
    document.write('<li><a href="http://www.dom.com/legal-terms-and-conditions.jsp">Legal Terms and Conditions</a></li>');
    document.write('<li><a href="http://www.dom.com/privacy.jsp">Privacy</a></li>');
    document.write('<li><b>E-Script Helpline (800)-895-8899</b></li>');
    document.write('</ul></div>');

}
