// HTML 로 넘어온 태그의 폭이 테이블폭보다 크다면 테이블폭을 적용한다. function resizeBoardImage(imageWidth, borderColor) { var target = document.getElementsByName('target_resize_image[]'); var imageHeight = 0; if (target) { for(i=0; i imageWidth) { imageHeight = parseFloat(target[i].width / target[i].height) target[i].width = imageWidth; target[i].height = parseInt(imageWidth / imageHeight); target[i].style.cursor = 'pointer'; // 스타일에 적용된 이미지의 폭과 높이를 삭제한다 target[i].style.width = ''; target[i].style.height = ''; } if (borderColor) { target[i].style.borderWidth = '1px'; target[i].style.borderStyle = 'solid'; target[i].style.borderColor = borderColor; } } } } function image_window(img) { var w = img.tmp_width; var h = img.tmp_height; var winl = (screen.width-w)/2; var wint = (screen.height-h)/3; if (w >= screen.width) { winl = 0; h = (parseInt)(w * (h / w)); } if (h >= screen.height) { wint = 0; w = (parseInt)(h * (w / h)); } var js_url = "