1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
    function resize(){
        var item_img = document.getElementById("item_img");
 
        dialogWidth = img.width + 10 + 'px';
        dialogHeight = img.height + 'px';
 
        var img_body = document.getElementById('img_body');
        img_body.style.overflowX = "hidden";
        
        if(item_img.height <= 1000){
            img_body.style.overflowY = "hidden";
        }
    }
</script>
<body id = "img_body">
    <img id= "item_img" src = "" border = "0">
</body>
cs