désactiver la bar bleu de popup
bonjour
j'ai un problème avec une popup,j'arrive pas a désactivé la bar bleu de windows dans ma popup ?.???
voici mon code:
Citation:
lafonction de popup
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <SCRIPT language="Javascript" type="text/javascript">
function ouvrir(l,h,url) {
hauteur=Math.round((screen.availHeight-h)/2);
largeur=Math.round((screen.availWidth-l)/2);
window.open(url, "site", "toolbar=0,location=0,directories=0,status=0, scrollbars=0,resizable=0,menubar=0,top="+hauteur+",left="+largeur+",width="+l+",height="+h); }
</SCRIPT><body>
<input type="button" value="Tester" onclick="ouvrir(360,212,'onglet.html')"></td>
</body>
</html> |
Code:
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM WebSphere Studio">
<META http-equiv="Content-Style-Type" content="text/css">
<LINK href="theme/Master.css" rel="stylesheet" type="text/css">
<TITLE>calque.html</TITLE>
<style type="text/css">
<!--
#Entete {
position: absolute;
width: 354px;
height: 206px;
z-index: 1;
border:black;
top: 22px;
font:bold 10px arial;
color:white;
background-color:gray ;
visibility: visible;
}
#Ongl1 {
position: absolute;
width: 354px;
height: 206px;
z-index: 6;
border:black;
top: 66px;
background-color:gray ;
visibility: visible;
}
#Ongl2 {
position: absolute;
width: 354px;
height: 206px;
z-index: 5;
border:black;
top: 66px;
background-color: gray;
visibility: visible;
}
#Ongl3 {
position: absolute;
width: 354px;
height: 206px;
z-index: 4;
border:black;
top: 66px;
background-color: gray;
visibility: visible;
}
#Ongl4 {
position: absolute;
width: 354px;
height: 206px;
z-index: 3;
border:black;
top: 66px;
background-color: gray;
visibility: visible;
}
#Ongl5 {
position: absolute;
width: 354px;
height: 206px;
z-index: 2;
border:black;
top: 66px;
background-color: gray;
visibility: visible;
}
#navig {
position: absolute;
width: 354px;
height: 206px;
z-index: 1;
border:black;
top: 40px;
border: gray;
visibility: visible;
}
.curseur {
cursor: pointer;
cursor: hand;
}
-->
</style>
<script Language="JavaScript">
<!--
function changeOnglet(Num)
{
for (i=1; i<6; i++)
{
if(i!=Num){
document.getElementById('Ongl'+i).style.zIndex=i;
}
else {
document.getElementById('Ongl'+i).style.zIndex=6;
}
}
}
//-->
</script Language="JavaScript">
</HEAD>
<BODY >
<DIV id="Entete" >
<div >
<P align="left" ></P>
</div>
</DIV>
<div id="Ongl1">
<div style="border: black;border: 12px;">
<P>j-7</P>
</div>
</div>
<div id="Ongl2">
<div >
<P>1 MOIS</p>
</div>
</div>
<div id="Ongl3">
<div >
<p>3 MOIS</p>
</div>
</div>
<div id="Ongl4">
<div >
<p>1 AN</p>
</div>
</div>
<div id="Ongl5">
<div >
<p>2 AN</p>
</div>
</div>
<div id="navig">
<div >
<p><img src="" alt="" class="curseur" width="70" height="25" onclick="changeOnglet(1);"><img src="" alt="" class="curseur" width="70" height="25"
onclick="changeOnglet(2);"><img src="" alt="" class="curseur"
width="70" height="25" onclick="changeOnglet(3);"><img
src="" alt="" class="curseur" width="70" height="25"
onclick="changeOnglet(4);"><img src="" alt="" class="curseur" width="70" height="25"
onclick="changeOnglet(5);"></p>
</div>
</div>
</BODY>
</HTML> |