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);
}

function popup(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function PleinEcran() {
largeurEcran =screen.width-10
hauteurEcran =screen.height-30
var fenetre = window.open("siteflash/flash_index.htm","1primweb_Flash","width=" +
largeurEcran + ",height=" +hauteurEcran);
fenetre.window.moveTo(0,0);
}