function checkImages() {
 var imgs = document.getElementById("thisContents").getElementsByTagName("IMG");
 for (var i=0; i   if (imgs[i].width >= 820) {
   imgs[i].width="820";
  }
 }
}



// 이미지 리싸이즈 함수
//  인자는 최대 width
function changeImageSize(pWidth) {
    var r, re;
    testImg = new Image();
    
    re = /이미지폴더|이미지폴더/i;
    for (var i=0;i<document.images.length;i++) {

        r = (document.images[i].src).search(re);
        if (r > -1 && document.images[i].src != "") {
            testImg.src = document.images[i].src;
            if (testImg.width > pWidth) {
                document.images[i].width = pWidth;
                document.images[i].height = testImg.height * pWidth / testImg.width;
            }
        }
    }
}




Posted by [czar]
,