1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<script type="text/javascript">
// Variable globale pour stocker une référence vers la fenêtre ouverte
var fenetreOuverte;
function ouvrirFenetre()
{
fenetreOuverte = window.open("../media/Personnels.html",'_blank',"toolbar=0, directories=0, status=1, menubar=0, width=450, height=300, scrollbars=1, location=1, resizable=1")
setTimeout(function(){ fenetreOuverte.close();},5000)
}
</script>
<input type="button" value="ouvrir" onclick="ouvrirFenetre()">
</body>
</html> |
Partager