<!--
// ÀÌ¹ÌÁö ¸®»çÀÌÁî
// imageResize(this, °¡·ÎÅ©±â, ¼¼·ÎÅ©±â)
function imageResize(oImg, reWidth, reHeight){
	tarSize = reWidth / reHeight;
	oImgSize = oImg.width / oImg.height;
	if(reWidth == 0){ //°¡·ÎÅ©±â°¡ 0ÀÌ¸é ¼¼·Î¸¸ Á¶Á¤
		if(oImg.height > reHeight) oImg.height = reHeight;
	}else if(reHeight == 0){ //¼¼·ÎÅ©±â°¡ 0ÀÌ¸é °¡·Î¸¸ Á¶Á¤
			if(oImg.width > reWidth) oImg.width = reWidth;
	}else if(reWidth != 0 && reHeight != 0){
		if(tarSize > oImgSize){ //¼¼·Î¸¦ ¸ÂÃã
			if(oImg.height > reHeight) oImg.height = reHeight;
		}else if(tarSize < oImgSize){ //°¡·Î¸¦ ¸ÂÃã
			if(oImg.width > reWidth) oImg.width = reWidth;
		}else{
			oImg.width = reWidth;
			oImg.height = reHeight;
		}
	}
	oImg.style.display = "";
}




-->
