/** * 画像を見る。 * @return */ function doImagePopup(url, width, height) { var selectpopup = document.getElementById('selectpopup'); selectpopup.className = "showdialog"; height = parseInt(height); width = parseInt(width); var width_min = 480; var width_max = 640; var height_min = 480; var height_max = 480; if (height > height_max) { height = height_max; } else if (height < height_min) { height = height_min; } if (width > width_max) { width = width_max; } else if (width < width_min) { width = width_min; } var html_data = '
'; doPopup(html_data, width, width, height, height); }