<!-- Fonction pour gérer une Popup

function PopupCentree(page,largeur,hauteur,options)
{
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"Popup","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

function PopupMulti(rue,quartier,ville,dept,region,largeur,hauteur,options)
{
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(rue,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
  top=top+32 ;
  left=left+10 ;
  window.open(quartier,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
  top=top+32 ;
  left=left+10 ;
  window.open(ville,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
  top=top+32 ;
  left=left+10 ;
  window.open(dept,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
  top=top+32 ;
  left=left+10 ;
  window.open(region,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

