1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</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);
self.close();
}
</SCRIPT>
</head>
<body>
<form><input type="button" value="Résultats Analytiques" onClick="javascript:PopupCentrer('result.php',950,850,'menubar=no,scrollbars=yes,statusbar=no');"></form>
</body>
</html> |
Partager