<script>
/**
* 鼠标滚轮改变图片大小
* by www.jb200.com
*/
function onWheelZoom(obj){
zoom = parseFloat(obj.style.zoom);
tZoom = zoom + (event.wheelDelta>0 ? 0.05 : -0.05);
if( tZoom > 1 || tZoom<0.1 ) return true;
obj.style.zoom=tZoom;
return false;
}
</script>
<a href="
javascript:window.close()"><img
src="../images/20131120101711.png" style="zoom:1;"
onmousewheel='return onWheelZoom(this)'></a>