<html>
<head>
</head>
<body>
<div align="center">
<img src="2.jpg" width="200px" height=250px" id="image" οnmοuseοver="showPicture()" οnmοuseοut="showPicture1()">
</div>
<script type="text/javascript">
function showPicture(){
document.getElementById("image").style.width="532px";
document.getElementById("image").style.height="608px";
}
function showPicture1(){
document.getElementById("image").style.width="200px";
document.getElementById("image").style.height="250px";
}
</script>
<script type="text/javascript">
// document.getElementById("image").attachEvent("onmouseover",showPicture);
// document.getElementById("image").attachEvent("onmouseout",showPicture1);
</script>
</body>
</html>