/* 
This Javascript  makes the links inside the red 'Product Sign On' box open in new windows
*/
function parseNavigation(ob) {
toBeBrokenDown = ob.options[ob.selectedIndex].value.split("|");
targetWindow = toBeBrokenDown[0];
targetURL    = toBeBrokenDown[1];
	if (targetWindow!=='') {
	window.open(targetURL,targetWindow,'');
	ob.selectedIndex = 0;
		} else {
	window.open(targetURL,'_top')
	}
}