<!--
// Select box function, loads selected chapter into CONTENTS frame
function goChapter()
{
        var a = document.ChapSelect.Chapter.selectedIndex;

        if (a >= 0) {
                var newLoc = eval("document.ChapSelect.Chapter.options[a].value");
                if ((newLoc != null) && (newLoc != "0") && (newLoc != ""))
                {
                        parent.frames.CONTENT.location.href = newLoc;
                        return;
                }
        }
        alert("Please select a chapter.");
}

//Creates new window from content frame
function printPage(){
        var contentPage = top.frames.CONTENT.location;
        if (navigator.appVersion.indexOf("MSIE") != -1) {
        window.open(contentPage,"print","location=no, menubar=yes, toolbar=yes");
        }
        else {
        top.frames.CONTENT.print();
        }
}

//Help launcher
function launchHelp(w_val,h_val,locat) {
        msgWindow = window.open("","Help","width="+w_val+",height="+h_val+",toolbar=no,resizable=yes,scrollbars=yes");
        msgWindow.location.href = locat;
        if (msgWindow.opener == null) msgWindow.opener = window;
}

//-->

