

//FUNCIÓN LANZA WEBS DEL GRUPO DEL COMBO DEL MENÚ LATERAL

function abrirContenido(form) {
    if (form.list[form.list.selectedIndex].text!= "" && form.list[form.list.selectedIndex].value!= "0") {
       window.open(form.list[form.list.selectedIndex].value,'Entidad','') ;
    } else {
      return false ;
    } 
}