<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script type="text/JavaScript">
window.onload = function(){
var img = document.getElementById("img");
img.ondblclick = function(){
if(this.width == this.attributes['default_width'].value && this.height == this.attributes['default_height'].value){
this.width *=3;
this.height *= 3;
}else{
this.width = this.attributes['default_width'].value ;
this.height = this.attributes['default_height'].value;
}
}
};
</script>
</head>
<body>
<img src="http://mat1.gtimg.com/www/images/qq2012/guanjia2.png" width="200" height="200" default_width=200 default_height=200 id="img"/>
</body>
</html>