<!--Hide JavaScript from Java-Impaired Browsers

// change to false if no confirmation message desired
confirm_click=false;
// if you want to target another frame, just change the target variable:
//  "parent." means parent frame
//  "top." means top frame
//  "parent.main_frame." means the frame named "main_frame", sibling of current frame
target = "";
function navigate(isnform) {
 durl=isnform.isnlist.options[isnform.isnlist.selectedIndex].value;
 if (durl.length == 0) {
  alert("Invalid selection!");
 } else {
  durlconfirm="Are you certain you wish to go to "+durl+"?";
  if (!confirm_click || confirm(durlconfirm)) {
   eval(target+"location.href=durl");
  }
 }
}
// End Hiding Script -->

