1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<html>
<head>
<script type="text/javascript">
var wins = [];
function ouvrepopup(url,ident) {
if(wins[ident] && wins[ident].closed == false)
{
wins[ident].focus();
}
else
{
wins[ident] = window.open(url,ident, config='height=100, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
}
}
</script>
</head>
<body>
<input type="button" onclick="ouvrepopup('popup.htm','maPopup1');" value="ouvrir popup1">
<input type="button" onclick="ouvrepopup('popup.htm','maPopup2');" value="ouvrir popup2">
</body>
</html> |
Partager