// ÀÌ¹ÌÁö Å©±âÁ¶Á¤ ÇÔ¼ö
function post_img_resize(obj, bias_x, bias_y, ratiotf) {
	if(typeof(ratiotf) != "undefined") {
		ratiotf = true;
	}

	if((obj.width) * 3 > (obj.height) * 4) {
		if (bias_x > 0) {
			obj.width = bias_x;
		}
	} else {
		if (bias_y > 0) {
			obj.height = bias_y;
		}
	}
}

// ½Ã½ºÅÛ°ú È¸¿ø»çÀÌÀÇ ´Ù¿î·Îµå
function file_download(url, idx) {
	window.open(url + "/magic_download.html?idx=" + idx,"download","width=100, height=100");
}

// »çÀÌÆ® Ã·ºÎÆÄÀÏ ´Ù¿î·Îµå
function site_download(url, idx) {
	window.open(url + "/site_download.html?idx=" + idx,"download","width=100, height=100");
}

// »çÀÌÆ® Ã·ºÎÆÄÀÏ ´Ù¿î·Îµå
function product_download(url, idx) {
	window.open(url + "/product_download.html?idx=" + idx,"download","width=100, height=100");
}