Bonjour à tous,

Voici mon problème :
J'aimerai sous chrome (V: 20.0.1132.27) ouvrir un Popup sans les scrollbars :
Le code ci-dessous fonctionne très bien sous Opéra & IE, mais sous chrome impossible de les cacher. En vous remerciant par avance de votre aide.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
		<script
	language="javascript">
	<!-- 
function popupcentre2(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); 
} 
--> 
</script>
	
	</head>
	
	
<body>



	<ul id="menuDeroulant">
		<li>
			<a href="#">Synthèse Globale</a>
			<ul class="sousMenu">
				<li><a href="http://192.168.75.14:8888/Rgraph/Synthese.php" target="_bank" ><img src="/jpgraph-3.5.0b1/src/Examples/Graphique5.png" height="40" width="40" >Synthèse</a></li>
				<li><a href=javascript:popupcentre2("http://192.168.75.14:8888/jpgraph-3.5.0b1/src/Examples/Computers.php",450,530,"menubar=no,scrollbars=no,statusbar=no")><img src="/jpgraph-3.5.0b1/src/Examples/Computer.png" height="40" width="40" >Ordinateurs</a></li>
......................................................