bonjour voila j ai un probleme je veux faire apparaitre et disparaitre des calque d image mais le hic c est que je ne sais pas pourquoi ca ne marche pas
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>test2</title>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<script language="JavaScript">
function showDIV(LyrName) {document.getElementById(LyrName).style.visibility='visible'; }
function hideDIV(LyrName) {document.getElementById(LyrName).style.visibility='hidden'; }
</script>
</head>
<body>
<div id="base" style="position:absolute; width:800px; height:800px; z-index:1; left: 0px; top: 0px; visibility:visible" ><img src="Images/A1.jpg" width="800" height="800" border="0" onClick="showDIV(imag1); return false" ></div>
<div id="imag1" style="position:absolute; width:471px; height:471px; z-index:1; left: 170px; top: 175px; visibility:hidden" ><img src="Images/1.jpg" onClick="hideDIV(imag1); return false" width="480" height="480" ></div>
</body>
</html>