// JavaScript Document

function JumpToIt(list) {
    var newPage = list.options[list.selectedIndex].value
    if (newPage != "None") {
      window.open( list.options[list.selectedIndex].value,'mywindow',  'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=900,height=900')
    }
}



