function JumpToUrl(form)
 
    {
    var myindex=form.cmbQuickLinks.selectedIndex
    if (form.cmbQuickLinks.options[myindex].value != "0") 
      {
      // load page in the 'main' frame
      window.open(form.cmbQuickLinks.options[myindex].value,"_self");
      }
    }