function goExternUrl(liste)
{
 var url = liste.options[liste.selectedIndex].value;

 if (url=='')
    return;

 if ((url.charAt(0)!='/') && (url.toLowerCase().indexOf("http://")==-1))
    location.href="http://"+url;
 else
    location.href=url;

 liste.options[0].selected=true;
}
