/*---------------------------------------------------------------------------------------------------
	À©µµ¿ì °ü·Ã ÇÔ¼ö
---------------------------------------------------------------------------------------------------*/

/* »õ Ã¢À» ¶ç¿ì´Â ÇÔ¼ö */
function popup(url, target, width, height, scroll_flag)
{
	window.open(url, target, "width=" + width + ", height=" + height + ", menubar=no, directories=no, resizable=no, status=no, scrollbars=" + scroll_flag);
}

/* ÁöÁ¤ÇÑ Å©±â·Î Ã¢À» Á¶ÀýÇÑ ÈÄ È­¸é Áß¾Ó¿¡ Á¤·Ä½ÃÅ°´Â ÇÔ¼ö */
function align_center(width, height)
{
	var scr_width;
	var scr_height;

	scr_width = window.screen.width;
	scr_height = window.screen.height;

	scr_width = (scr_width - width) / 2;
	scr_height = (scr_height - height) / 2;

	window.moveTo (scr_width, scr_height);
	window.resizeTo (width, height);
}


/*---------------------------------------------------------------------------------------------------
	AutoPlay °ü·Ã ÇÔ¼ö
---------------------------------------------------------------------------------------------------*/

/* ÀÌ¹ÌÁö¿ë AutoPlay ÇÔ¼ö */
function autoplay_image(board_id, item_no) { xfile_image(board_id, item_no); }

/* ½ºÆ®¸²¿ë AutoPlay ÇÔ¼ö */
function autoplay_stream(board_id, item_no, as, lp, mime) { xfile_stream(club_id, board_no, item_no, as, lp, mime); }

/* ÇÃ·¡½Ã¿ë AutoPlay ÇÔ¼ö */
function autoplay_flash(board_id, item_no, width) { xfile_flash(club_id, board_no, item_no, width); }


/* ÀÌ¹ÌÁö¿ë AutoPlay ¼­ºê ÇÔ¼ö */
function xfile_image(board_id, item_no)
{
	document.write("<img id='img_area' style='display:none;' src='/board/xfile.asp?bid=" + board_id + "&item_no=" + item_no + "' title='Å¬¸¯ÇÏ½Ã¸é »õÃ¢À¸·Î º¸½Ç ¼ö ÀÖ½À´Ï´Ù.' border='0' disabled><br>");
}

/* ½ºÆ®¸²¿ë AutoPlay ¼­ºê ÇÔ¼ö */
function xfile_stream(board_id, item_no, as, lp, mime)
{
	document.write("<embed id='stream_area' src='/board/xfile.asp?bid=" + board_id + "&item_no=" + item_no + "' autostart='" + as + "' loop='" + lp + "' type='" + mime + "' controller='true' enablecontextmenu='false'></embed><br>");
}

/* ÇÃ·¡½Ã¿ë AutoPlay ¼­ºê ÇÔ¼ö */
function xfile_flash(board_id, item_no, width)
{
	document.write("<embed id='flash_area' src='/board/xfile.asp?bid=" + board_id + "&item_no=" + item_no + "' width='" + width + "' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' enablecontextmenu='false' type='application/x-shockwave-flash'></embed><br>");
}


/*---------------------------------------------------------------------------------------------------
	±âÅ¸ ÇÔ¼ö
---------------------------------------------------------------------------------------------------*/

/* ÀÌ¹ÌÁö·Î´õ ¼­ºê ÇÔ¼ö */
function img_sub_loader(board_id, item_no)
{
	popup("/board/imgloader.asp?bid=" + board_id + "&item_no=" + item_no, "_blank", 1, 1, "yes");
}
