/*
This Javascript controls the links from the select menu from the red drop down box.
*/

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    = targetWindow;
	if (targetWindow!=='') {
	// if a new Window name is specified, then it will
	// open in a new Window.
	window.open(targetURL,'targetURL','width=400,height=300,resizable=yes,directories=yes,location=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes');
	// 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')
	}
}