function JumpToIt(list) { var selection = list.options[list.selectedIndex].value if (selection !="None") location.href = selection } var newwindow = '' function popitup(url) { if (newwindow.location && !newwindow.closed) { newwindow.location.href = url; newwindow.focus(); } else { newwindow=window.open(url,'htmlname','width=498,height=498');} } function tidy() { if (newwindow.location && !newwindow.closed) { newwindow.close(); } } // Based on JavaScript provided by Peter Curtis at www.pcurtis.com -->