<!--
function parseNavigation(ob) {
// created by joe crawford october 2002
// http://artlung.com/lab/scripting/dropdown-only-some-new-window/
toBeBrokenDown = ob.options[ob.selectedIndex].value.split("|");

targetWindow = toBeBrokenDown[0];
targetURL    = toBeBrokenDown[1];
var flag = targetWindow.indexOf('_');
//look for _ in the first part of options value
    if (targetWindow!=='' && flag !== -1 ) {
    // if a new Window name is specified, and with _ at it's name then it will
    // open in a new small Window.
    window.open(targetURL,targetWindow,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=290,height=230');
    // if we open a new window, then we have to re-set
    // the select box to the first option
    // which should have no value
    ob.selectedIndex = 0;
        } else if (targetWindow!=='' && flag == -1 ) {
    // if a new Window name is specified, without _ at it's name then it will
    // open in a new full size Window.
    window.open(targetURL,targetWindow,'toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
    // if we open a new window, then we have to re-set
    // the select box to the first option
    // which should have no value
    ob.selectedIndex = 0;
	}
	else{
    // or else it will open in the current window        
    window.open(targetURL,'_top')
    }
}
//-->
