// JavaScript Document

function ventanaSecundaria (URL){ 
cursos=document.myForm.curso.options[document.myForm.curso.selectedIndex];

alert(cursos);
   window.open(URL,"ventana1","width=250,height=300,scrollbars=YES") 
} 