	
function fenetre(nom,haut,gauche,largeur,hauteur,temps) 
  {
  Fen=window.open(nom,'_blank','resizable = yes,scrollbars = yes');
  Fen.resizeTo(largeur,hauteur);
  Fen.moveTo(gauche,haut); <!-- je cadre cette fenetre en haut à gauche -->
	Fen.focus(); 
	tps=temps*1000;
  setTimeout('Fen.focus()',10);  
	setTimeout('Fen.close()',tps);
  }
	
function popup(str)
  {
  alert(str)
  }	
