// Roster Popup
// http://eliescript.com.free.fr
function open_window(votre_page)
{
var hauteur_popup=450;
var H = (screen.height - hauteur_popup) / 2;
var largeur_popup=450;
var L = (screen.width - largeur_popup) / 2;
pop_up = window.open(votre_page,"Voici_ca_fiche","status=no,scrollbars=yes,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
}
function ChangeUrl(formulaire)
  {
  if (formulaire.ListeUrl.selectedIndex != 0)
  {
  location.href = formulaire.ListeUrl.options[formulaire.ListeUrl.selectedIndex].value;
  }
  else
  {
  alert('Veuillez choisir une couleur.');
  }
}
// End -->

// Breakout
function fk(){if (top.location != location) {top.location.href = document.location.href ;}}
// End -->