<html>
<head>
<script type=text/javascript>
function zoom_plus(){
if (document.getElementById('lien').title=='petite image')
{document.image.style.width=200;document.image.style.height=200;document.getElementById('lien').title='grande image';}
else
{document.image.style.width=100;document.image.style.height=100;document.getElementById('lien').title='petite image';}
}
</script>
</head>
<body>
<a href=javascript:zoom_plus()>zoom</a><a href='#' title='petite image' id='lien'><img name='image' src='url' width=100 height=100></a>
</body>
</html> |