function wopen(URL,width,height)
{
  //if(URL != ""){var URL = "index.htm";}
 
  //var width =  650 ;
  //var height = 450 ;
  var yes = 1;
  var no = 0;
  var menubar = no; //  Fichier, Editiion, Affichage...
  var scrollbars = no; // scrollbarre horizontale & verticale
  var locationbar = no; // Barre d'adresse
  var directories = no; // Barre de liens
  var resizable = no; // Permettre la fenetre d'être redimensionné
  var statusbar = no; // Status bar (with "Document: Done")
  var toolbar = no; // retour, Home, Stop bar d'outil
  
  var H = (screen.height-height)/2 ;  // pour centre selon la hauteur de l'écran
  var W = (screen.width-width)/2 ; // pour centrer selon la largeur de l'écran

   propriete = "width=" + (width) + ",height=" + (height) +  ",top=" + H +",left=" + W ;
   propriete += (menubar ? ",menubars" : "") + (scrollbars ? ",scrollbars" : "") + (locationbar ? ",location" : "") + (directories ? ",directories" : "") + (resizable ? ",resizable" : "") + (statusbar ? ",status" : "") + (toolbar ? ",toolbar" : "") ;

   popup = window.open(URL, 'TITRE',propriete) ;
}

function wclose() {
	window.close();
}

function wopen_SetTimeClose(iTime) {
	setTimeout("onClose()", iTime);
}
