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')
    }
}

function popwindow(popurl) {
var pURL = "http://www.focusallenpark.com/" + popurl
winpops=window.open(pURL,"", "width=540,height=220")
}


