  <!--
  function flyOver(shortCut, iOption) {
    //iOption:
    //0 - Same window, 1 - New window
    var strShortCut = getSelected(shortCut);
    if (strShortCut != "")
      if (iOption == 1)
        window.open (strShortCut, "ShortCut", "")
      else
        window.location.href = strShortCut;
  }

  function getSelected(selection) {
    var selectionText = "";

    if (selection.selectedIndex != -1) {
      selectionText = selection.options[selection.selectedIndex].value;
    }
    return (selectionText);
  }
  -->