
/* ½ºÅ©·Ñ ¾ø´Â ÆË¾÷ */
function open_pop(url, pop_width, pop_height) {
	var width = pop_width;
	var height = pop_height;
	var left = (screen.availWidth - width) / 2;
	var top = (screen.availHeight - height) / 2;

	optString = "some_options, width=" + width +", height=" + height + ", left=" + left + ", top=" + top;

	window.open(url, "etnews_pop", optString).focus();
}

/* ½ºÅ©·Ñ ÀÖ´Â ÆË¾÷ */
function open_pop_scroll(url, pop_width, pop_height) {
	var width = pop_width;
	var height = pop_height;
	var left = (screen.availWidth - width) / 2;
	var top = (screen.availHeight - height) / 2;

	optString = "some_options, scrollbars=yes, width=" + width +", height=" + height + ", left=" + left + ", top=" + top;

	window.open(url, "etnews_pop", optString).focus();
}

/**
 * ÆäÀÌÁöÀÇ ¹®ÀÚ¼ÂÀ» È®ÀÎÇØ¼­ euc-krÀÌ ¾Æ´Ñ °æ¿ì¿¡´Â euc-kr·Î º¯°æ
 * ¼Ò¼È´ñ±Û·Î ÀÎÇØ ÀÓ½ÃÁ¶Ä¡
 **/
function checkCharset() {
    if (navigator.appName.charAt(0) == "M") {
        var ver = getInternetVersion("MSIE");
        if (ver < 8) {
            document.charset = 'euc-kr';
        }
    }
}



/**
 * @ÇÃ·¡½¬ ·ÎµùÀ» À§ÇÑ ÇÔ¼ö
 **/
// flashLoad(ÆÄÀÏ°æ·Î, °¡·Î, ¼¼·Î, ¾ÆÀÌµð, ¹è°æ»ö, º¯¼ö, À©µµ¿ì¸ðµå)
function flashLoad(url,w,h,id,bg,vars,win) {

	win = "transparent";

	// ÇÃ·¡½Ã ÄÚµå Á¤ÀÇ
	var flashStr=
	"<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,1,102,64' width='"+w+"' height='"+h+"' id='"+id+"' align='middle'>"+
	"<param name='allowScriptAccess' value='always' />"+
	"<param name='movie' value='"+url+"' />"+
	"<param name='FlashVars' value='"+vars+"' />"+
	"<param name='wmode' value='"+win+"' />"+
	"<param name='menu' value='false' />"+
	"<param name='quality' value='high' />"+
	"<param name='bgcolor' value='"+bg+"' />"+
	"<param name='base' value='.'>"+
	"<embed src='"+url+"' FlashVars='"+vars+"' wmode='"+win+"' menu='false' base='.' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' name='"+id+"' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
	"</object>";

	// ÇÃ·¡½Ã ÄÚµå Ãâ·Â
	document.write(flashStr);

	//FlashÀÇ ExternalInterface°¡ Form Tag³»¿¡¼­ ¿À·ù³ª´Â ¹ö±×¸¦ ÇØ°áÇÏ´Â ÄÚµå
	eval("window." + id + " = document.getElementById('" + id + "');");
}



/**
 * ÆË¾÷ ÇÔ¼ö
 * /tools/popup.js.html ¿¡¼­ È£Ãâ
 **/
function openPopup(popup_id, width, height, pos_top, pos_left, check_cookie) {
	var popup_name = popup_id + '_popup';

	//if (check_cookie && getCookie(popup_name) == 'check') { // check cookie
	if (check_cookie && $.cookie('popup_name') == 'check') { // check cookie
		return;
	}

	var obj_popup;
	obj_popup = window.open('/tools/popup_open.html?popup_id=' + popup_id, '_' + popup_name, 'width=' + width + ',height=' + height + ',scrollbars=no,resizable=no,menubar=no,top=' + pos_top + ',left=' + pos_left);
	if (obj_popup) {
		obj_popup.opener = self;
		obj_popup.focus();
	}
}




