var target = "blank"
function envoie(frm){
URL = frm.articles.options[frm.articles.selectedIndex].value
if (frm.articles.selectedIndex != 0){
if (target == "blank") mywindow = window.open(URL);
else if (target == "self") document.location = URL;
else parent.frames[target].location = URL;
}}
