
function ChangeUrl()
	{
	if (document.FormDir.ListeUrl.selectedIndex != 0)
		{
		location.href = document.FormDir.ListeUrl.options[document.FormDir.ListeUrl.selectedIndex].value;
	 	}
	else
		{
		alert('Select your topic');
		}
	}
function pop (Url,Name_Frame,Components) {
     window.open (Url,Name_Frame, Components);
}
function ChangeUrl() {
     if (document.FormMenu.ListeUrl.selectedIndex != 0) {
          if (document.FormMenu.ListeUrl.options[document.FormMenu.ListeUrl.selectedIndex].value != "") {
               window.top.location.href = document.FormMenu.ListeUrl.options[document.FormMenu.ListeUrl.selectedIndex].value;
          } else {
               alert('Faites un choix');
          }
     } else {
          alert('Faites un choix');
     }
}
function PopupCentrer(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}