var NN;
    if ((navigator.appName == "Netscape") && (navigator.appVersion.charAt(0) < 5)) {
        NN = "true";
    }
    var firstQuestionObj;
    var firstQuestionArr = new Array();
    var secondQuestionObj;
    var secondQuestionArr = new Array();
    var thirdQuestionObj;
    var thirdQuestionArr = new Array();
    var j = 1;
    function question(value, txtQuestion, id, parent, child) {
        this.value = value;
        this.txtQuestion = txtQuestion;
        this.id = id;
        this.parent = parent;
        this.child = child;
    }

firstQuestionArr[1] = new question("#", "Tell me about...", 1, 0, 1);secondQuestionArr[1] = new question("#", "Jabil's...", 1, 1, 1);thirdQuestionArr[1] = new question("http://jbl.client.shareholder.com/governance.cfm", "Corporate Governance Philosophy", 1, 1, 0);thirdQuestionArr[2] = new question("/310.asp", "Culture", 2, 1, 0);thirdQuestionArr[3] = new question("/363.asp", "Executive Management", 3, 1, 0);thirdQuestionArr[4] = new question("/337.asp", "History", 4, 1, 0);thirdQuestionArr[5] = new question("/124.asp", "Quality Commitment", 5, 1, 0);thirdQuestionArr[6] = new question("/services.asp", "Service Offerings & Industries Served", 6, 1, 0);secondQuestionArr[2] = new question("#", "the most current...", 2, 1, 1);thirdQuestionArr[7] = new question("http://jbl.client.shareholder.com/annual.cfm", "Annual Report", 7, 2, 0);thirdQuestionArr[8] = new question("http://jbl.client.shareholder.com/fin_highlights.cfm", "Financial Highlights", 8, 2, 0);thirdQuestionArr[9] = new question("/news.asp", "News", 9, 2, 0);thirdQuestionArr[10] = new question("http://jbl.client.shareholder.com/edgar.cfm", "SEC Filings", 10, 2, 0);thirdQuestionArr[11] = new question("http://jbl.client.shareholder.com/stock.cfm", "Stock Information", 11, 2, 0);thirdQuestionArr[12] = new question("http://jbl.client.shareholder.com/medialist.cfm", "Webcasts", 12, 2, 0);secondQuestionArr[3] = new question("/1048.asp", "Jabil Global Services", 3, 1, 0);secondQuestionArr[4] = new question("/1060.asp", "Jabil Technology Services", 4, 1, 0);firstQuestionArr[2] = new question("#", "How do I contact...", 2, 0, 1);secondQuestionArr[5] = new question("mailForm.asp?to=webmaster@jabil.com$subject=Website%20Email", "General Company Information", 5, 2, 0);secondQuestionArr[6] = new question("#", "Jabil Business Development...", 6, 2, 1);thirdQuestionArr[13] = new question("mailForm.asp?to=business_development@jabil.com$subject=Website%20Email", "Americas", 13, 6, 0);thirdQuestionArr[14] = new question("mailForm.asp?to=europebusdev@jabil.com$subject=Website%20Email", "Europe", 14, 6, 0);thirdQuestionArr[15] = new question("mailForm.asp?to=asiapacificbusdev@jabil.com$subject=Website%20Email", "Asia", 15, 6, 0);secondQuestionArr[7] = new question("#", "Warranty & Repair Business Development...", 7, 2, 1);thirdQuestionArr[16] = new question("mailForm.asp?to=jgs@jabil.com$subject=Website%20Email", "Americas", 16, 7, 0);thirdQuestionArr[17] = new question("mailForm.asp?to=jgseuropebusdev@jabil.com$subject=Website%20Email", "Europe", 17, 7, 0);thirdQuestionArr[18] = new question("mailForm.asp?to=jgsasiabusdev@jabil.com$subject=Website%20Email", "Asia", 18, 7, 0);secondQuestionArr[8] = new question("mailForm.asp?to=investor_relations@jabil.com$subject=Website%20Email", "Investor Relations", 8, 2, 0);secondQuestionArr[9] = new question("mailForm.asp?to=corporate_communications@jabil.com$subject=Website%20Email", "Public Relations", 9, 2, 0);secondQuestionArr[10] = new question("#", "A specific Jabil location", 10, 2, 0);secondQuestionArr[11] = new question("mailForm.asp?to=webmaster@jabil.com$subject=Website%20Email", "Webmaster for website feedback", 11, 2, 0);firstQuestionArr[3] = new question("#", "How do I request...", 3, 0, 1);secondQuestionArr[12] = new question("http://jbl.client.shareholder.com/comment.cfm", "A company/IR information packet", 12, 3, 0);secondQuestionArr[13] = new question("/news.asp", "A Jabil Logo", 13, 3, 0);secondQuestionArr[16] = new question("/news.asp", "Support for my computer motherboard", 16, 3, 0);firstQuestionArr[4] = new question("#", "How do I find a job...", 4, 0, 1);secondQuestionArr[14] = new question("/careers.asp", "Search for job openings at Jabil", 14, 4, 0);secondQuestionArr[15] = new question("/resumePopup.asp", "Apply for jobs at Jabil", 15, 4, 0);

    function loadFirstQuestions(formObj){
        j = 1
        firstQuestionObj = new Option("Select a question", "", true, true);
        if (NN == "true") {
            document.FindATopicQuest1.document.findATopic.firstSel.options[0] = firstQuestionObj;
        }
        else {
            formObj.firstSel.options[0] = firstQuestionObj;
        }
        for (var q=1; q < firstQuestionArr.length; q++) {
            firstQuestionObj = new Option(firstQuestionArr[q].txtQuestion, firstQuestionArr[q].id);
            if (NN == "true") {
                document.FindATopicQuest1.document.findATopic.firstSel.options[j] = firstQuestionObj;
            }
            else {
                formObj.firstSel.options[j] = firstQuestionObj;
            }
            j = j + 1;
        }
    }
    function firstSelected(formObj, formObj2, parentId) {
        j = 1;
        for (var q=1; q < firstQuestionArr.length; q++) {
            if (firstQuestionArr[q].id == parentId) {
                if (firstQuestionArr[q].child == 0) {
                    if (NN == "true") {
                        document.FindATopicQuestSubmit.document.findATopic4.action = firstQuestionArr[q].value;
                    }
                    else {
                        document.findATopic4.action = firstQuestionArr[q].value;
                    }
                    MM_showHideLayers('FindATopicQuestSubmit','','show');
                }
                else {
                    secondQuestionObj = new Option("Select a question", "", true, true);
                    if (NN == "true") {
                        document.FindATopicQuest2.document.findATopic2.secondSel.options[0] = secondQuestionObj;
                    }
                    else {
                        formObj2.secondSel.options[0] = secondQuestionObj;
                    }
                    for (var q=1; q < secondQuestionArr.length; q++) {
                        if (secondQuestionArr[q].parent == parentId) {
                            secondQuestionObj = new Option(secondQuestionArr[q].txtQuestion, secondQuestionArr[q].id);
                            if (NN == "true") {
                                document.FindATopicQuest2.document.findATopic2.secondSel.options[j] = secondQuestionObj;
                            }
                            else {
                                formObj2.secondSel.options[j] = secondQuestionObj;
                            }
                            j = j + 1;
                        }
                        if (NN == "true") {
                            while (j < document.FindATopicQuest2.document.findATopic2.secondSel.options.length) {
                                document.FindATopicQuest2.document.findATopic2.secondSel.options[(document.FindATopicQuest2.document.findATopic2.secondSel.options.length - 1)] = null;
                            }
                        }
                        else {
                            while (j < formObj2.secondSel.options.length) {
                                formObj2.secondSel.options[(formObj2.secondSel.options.length - 1)] = null;
                            }
                        }
                    }
                    MM_showHideLayers('FindATopicQuest2','','show','FindATopicQuest3','','hide','FindATopicQuestSubmit','','hide');
                }
            }
        }
    }
    function secondSelected(formObj, formObj2, parentId) {
        j = 1;
        for (var q=1; q < secondQuestionArr.length; q++) {
            if (secondQuestionArr[q].id == parentId) {
                if (secondQuestionArr[q].child == 0) {
                    if (NN == "true") {
                        document.FindATopicQuestSubmit.document.findATopic4.action = secondQuestionArr[q].value;
                    }
                    else {
                        document.findATopic4.action = secondQuestionArr[q].value;
                    }
                    MM_showHideLayers('FindATopicQuestSubmit','','show','FindATopicQuest3','','hide');
                }
                else {
                    thirdQuestionObj = new Option("Select a question", "", true, true);
                    if (NN == "true") {
                        document.FindATopicQuest3.document.findATopic3.thirdSel.options[0] = thirdQuestionObj;
                    }
                    else {
                        formObj2.thirdSel.options[0] = thirdQuestionObj;
                    }
                    for (var v=1; v < thirdQuestionArr.length; v++) {
                        if (thirdQuestionArr[v].parent == parentId) {
                            thirdQuestionObj = new Option(thirdQuestionArr[v].txtQuestion, thirdQuestionArr[v].id);
                            if (NN == "true") {
                                document.FindATopicQuest3.document.findATopic3.thirdSel.options[j] = thirdQuestionObj;
                            }
                            else {
                                formObj2.thirdSel.options[j] = thirdQuestionObj;
                            }
                            j = j + 1;
                        }
                        if (NN == "true") {
                            while (j < document.FindATopicQuest3.document.findATopic3.thirdSel.options.length) {
                                document.FindATopicQuest3.document.findATopic3.thirdSel.options[(document.FindATopicQuest3.document.findATopic3.thirdSel.options.length - 1)] = null;
                            }
                        }
                        else {
                            while (j < formObj2.thirdSel.options.length) {
                                formObj2.thirdSel.options[(formObj2.thirdSel.options.length - 1)] = null;
                            }
                        }
                    }
                    MM_showHideLayers('FindATopicQuest3','','show','FindATopicQuestSubmit','','hide');
                }
            }
        }
    }
    function thirdSelected(formObj, parentId) {
        for (var q=1; q < thirdQuestionArr.length; q++) {
            if (thirdQuestionArr[q].id == parentId) {
                if (NN == "true") {
                    document.FindATopicQuestSubmit.document.findATopic4.action = thirdQuestionArr[q].value;
                }
                else {
                    document.findATopic4.action = thirdQuestionArr[q].value;
                }
                MM_showHideLayers('FindATopicQuestSubmit','','show');
            }
        }
    }

    function resetFindATopic(formObj) {
        if (NN == "true") {
            document.FindATopicQuest1.document.findATopic.firstSel.options[0].selected = true;
            document.FindATopicQuest2.document.findATopic2.secondSel.options[0].selected = true;
            document.FindATopicQuest3.document.findATopic3.thirdSel.options[0].selected = true;
        } else {
            document.findATopic.firstSel.options[0].selected = true;
            document.findATopic2.secondSel.options[0].selected = true;
            document.findATopic3.thirdSel.options[0].selected = true;
        }
    }