function admin_nav(list, choice, nav) {
    if (nav == 1) {
        window.open(document[list][choice].
        options[document[list][choice].selectedIndex].value)
    } else {
        location=document[list][choice].
        options[document[list][choice].selectedIndex].value
    }    
}


