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=418,height=418'); } } function tidy(){ if(newwindow.location && !newwindow.closed){ newwindow.close(); } } // Based on JavaScript provided by Peter Curtis at www.pcurtis.com -->