<!--
     window.name = "popup";
     var newWin;
    
     function popUp(page, name, details) {
         newWin = window.open(page, name, details);
         newWin.focus();
         return false;
     }

    function display (category) {
        var whichcategory = document.getElementById(category);
        if (whichcategory != null) {
            if (whichcategory.className == "show") {
                whichcategory.className = "hide";
            } else {
                whichcategory.className = "show";
            }
        }
    }
    
    function flip(imageID) {
        var img = document.getElementById(imageID);
        if (img != null) {
            if (img.src.indexOf('images/ji1_directory_plus.gif') > -1) {
                img.src = 'http://media.journalinteractive.com/designimages/ji1_directory_minus.gif';
            } else {
                img.src = 'http://media.journalinteractive.com/designimages/ji1_directory_plus.gif';
            }
        }
    }

    function showhide(id){
        if (document.getElementById){
            obj = document.getElementById(id);
            if (obj != null) {
                if (obj.style.display == "none"){
                    obj.style.display = "";
                } else {
                    obj.style.display = "none";
                }
            }
        }
    }
-->

