1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
// le code javascript //
var newWin = null;
function closeWin(){
if (newWin != null){
if(!newWin.closed)
newWin.close();
}
}
function popUp(strURL,strType) {
closeWin();
var strOptions="";
if (strType=="elastic") strOptions="scrollbars=yes,left=20,top=30,status=no,location=no,toolbar=no,height=620,width=460";
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="zip") strOptions="scrollbars=yes,left=20,top=30,resizable=yes,status=no,location=no,toolbar=no,height=480,width=640";
if (strType=="fenetre") strOptions="scrollbars=yes,left=20,top=30,resizable=no,status=no,location=no,toolbar=no,height=300,width=500";
if (strType=="forum_smileys") strOptions="scrollbars=yes,left=20,top=30,resizable=no,status=no,location=no,toolbar=no,height=300,width=200";
if (strType=="pop_forum") strOptions="scrollbars=yes,left=20,top=30,resizable=yes,status=yes,location=yes,toolbar=yes,height=500,width=800";
newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
}
// lien menant vers une 1ère fenêtre pop-up //
<a href="commentaires.php" onclick="popUp(this.href,'elastic');return false;" title="Commentaires">
// lien menant vers une 2ème fenêtre pop-upà partir de la 1ère //
onclick="popUp(this.href,'forum_smileys');return false;" title="Smileys" class="options">Plus de Smileys</a> |
Partager