// ÀÌ¹ÌÁö »çÀÌÁî¸¦ ÁÙ¿©ÁÖ´Â ½ºÅ©¸³Æ®
function changeImageSize(pWidth,pHeight,iname) {
	testImg = new Image();
	for (var i=0;i<document.images.length;i++) {
		if (document.images[i].src != ""&&document.images[i].name.substr(0,8)==iname) {
			testImg.src = document.images[i].src;
			if (testImg.width > pWidth || testImg.height > pHeight) {
				if((testImg.width/pWidth) > (testImg.height/pHeight)) {
				    document.images[i].width = pWidth;
				    document.images[i].height = testImg.height * pWidth / testImg.width;
				}
				else {
				    document.images[i].width =testImg.width * pHeight / testImg.height;
				    document.images[i].height = pHeight;
				}
			}
		}
	}
}	