웨딩사진에도 각자의 개성이 드러나네요

function PhotoPopup(img){
popWin = window.open("/common/popupImage.php?img="+img ,"popwin","width=416,height=250,scrollbars=yes,resizable=yes");
popWin.focus();
}
if(document.all.articleEmbedImg){
adjustImage_new(document.all.articleEmbedImg);
}
function adjustImage_new(target_img)
{
var newX, newY;
var newHeight, newWidth;
var newImg;
var maxWidth = 420;
newImg = new Image();
newImg.src = target_img.src;
imgw = newImg.width;
imgh = newImg.height;
if( imgw > maxWidth ){
var wResizeRate = (maxWidth/imgw)*100;
var ResizeRate = wResizeRate;
target_img. = null;
target_img.src = newImg.src;
target_img.width = (imgw/100) * ResizeRate;
}
}