function urllauch(field) {
      var v=field.options[field.selectedIndex].value;
      if (v=="") { return true }
      var tab= new Array();
      tab=v.split('#');
      if (tab[0]=="0") {
            window.open(tab[1],'_blank');
            //xt_medsitepopup(ssite,'C','0',tab[1],'S',tab[1],1,'')
      }
      else {            
            var lien = document.getElementById( tab[1] );
            if (lien) { 
              lien.click();
            }
      }
}

function change_list(field) {
      var v=field.options[field.selectedIndex].value;
      if (v=="") { return true }
           /* window.location = v;*/
}


