<!--

// Select Opener
// Copyright (c) 1996-2004, Michael David 

function parseNavigation(ob) {
toBeBrokenDown = ob.options[ob.selectedIndex].value.split("|");
targetWindow = toBeBrokenDown[0];
targetURL    = toBeBrokenDown[1];
    if (targetWindow!=='') {
    window.open(targetURL,targetWindow,'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=800,height=600');
    ob.selectedIndex = 0;
        } else {    
    window.open(targetURL,'_top')
    }
}

//-->

