// OPEN WINDOWfunction open_window(target,win_name,win_width,win_height) {if (win_width > screen.width)   win_width = screen.width;if (win_height > screen.height) win_height = screen.height;var offset_left = (screen.width - win_width) / 2;var offset_top  = (screen.height - win_height) / 2;win_height      = win_height - 100;var win_cfg     = "status=1,scrollbars=1,resizable=1,width=" + win_width + ",height=" + win_height + ",left=" + offset_left + ",top=" + offset_top;openwin         = window.open(target,win_name,win_cfg);openwin.opener  = self; openwin.focus(win_name);}// SELECT MENUfunction JumpToIt(list) {var selection = list.options[list.selectedIndex].valueif (selection != "none") location.href = selection}