1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
   | <html>
<head>
<title>Tout JavaScript.com - Ouverture d'une PopUp centré</title>
<script language="JavaScript">
 
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+"");
}
</script>
</head>
 
<font FACE="Arial" SIZE='-1' COLOR="#333333">
<form>Ou cliquez sur ce bouton : 
	<input type='button' value='Pop Up' onClick='PopupCentrer("popup.php",500,70,"menubar=no,scrollbars=no,statusbar=no,resizable=no")'>
</form>
 
</body>
</html> | 
Partager