// =============================================

function go_Search(cmb) {

   var myindex=cmb.selectedIndex

   if (myindex == 0) {
   }
   else {
      if (cmb.options[myindex].value == "") {
      }
      else {
         window.open(cmb.options[myindex].value, "", "");
         cmb.selectedIndex = 0;
      }
   }
}

// =============================================
