// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function JumpToIt_SamePage(frm) {
    var newPage = frm.url.options[frm.url.selectedIndex].value
    if (newPage != "None") {
        location.href=newPage
    }
}

function JumpToIt_NewPage(frm) {
    var newPage = frm.url.options[frm.url.selectedIndex].value
    if (newPage != "None") {
        window.open(newPage)
    }
}