CINXE.COM
GOALSTUDIO
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="//www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><script>(function(i, s, o, g, r) { var a = s.createElement(o); var m = s.getElementsByTagName(o)[0]; a.async = true; a.src = g; a.onload = function() { if (i[r].init) { i[r].init('https://js-error-tracer-api.cafe24.com', 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnb2Fsc3R1ZGlvLmNhZmUyNC5jb20iLCJhdWQiOiJqcy1lcnJvci10cmFjZXItYXBpLmNhZmUyNC5jb20iLCJtYWxsX2lkIjoiZ29hbHN0dWRpbyIsInNob3Bfbm8iOjIsInBhdGhfcm9sZSI6Ik1FTUJFUl9QUklWQUNZIiwibGFuZ3VhZ2VfY29kZSI6ImVuX1VTIiwiY291bnRyeV9jb2RlIjoiS1IiLCJpc195dHMiOmZhbHNlLCJpc19jb250YWluZXIiOmZhbHNlLCJ3b3Jrc3BhY2UiOiJwcm9kdWN0aW9uIn0.8eybubFYbHtYSoH6i7a5jcslK3jdXEuPk7gWNVq3shQ', {"errors":{"path":"\/api\/v1\/store","collectWindowErrors":true,"preventDuplicateReports":true,"storageKeyPrefix":"EC_JET.MEMBER_PRIVACY","samplingEnabled":true,"samplingRate":0.5},"vitals":{"path":"\/api\/v1\/vitals","samplingEnabled":true,"samplingRate":0.3},"resources":{"path":"\/api\/v1\/resources","samplingEnabled":true,"samplingRate":0.5,"durationThreshold":3000}}); } }; m.parentNode.insertBefore(a, m); }(window, document, 'script', '//optimizer.poxo.com/jet/jet.js', 'EC_JET'));</script> <script type="text/javascript">window.CAFE24 = window.CAFE24 || {};CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/member\/privacy.html","result":"\/member\/privacy.html","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}};</script><script type="text/javascript">if (typeof EC_ROUTE === "undefined") { /** * 프론트용 라우트 플러그인 * @type {{bInit: boolean, init: EC_ROUTE.init}} * CAFE24.ROUTE 참조 */ var EC_ROUTE = { EC_DOMAIN_PATH_INFO: 'EC_DOMAIN_PATH_INFO', bInit: false, aFromList: [], aToList: [], aCleanFilter: null, init: function () { if (this.bInit || typeof CAFE24.ROUTE === 'undefined') { return; } this.bInit = true; this.aCleanFilter = [ /^shop[1-9][0-9]*$/, /^(m|p)$/, new RegExp('^(' + Object.keys(CAFE24.ROUTE.support_language_list).join('|') + ')$'), /^skin-(base|skin[1-9][0-9]*|mobile[0-9]*)$/, ]; }, isNeedRoute: function () { return CAFE24.ROUTE.is_need_route; }, /** * * @param iShopNo * @param bMobile * @param sFrontLanguage * @param sSkinCode * @returns {*|string} */ getUrlDomain: function (iShopNo, bMobile, sFrontLanguage, sSkinCode) { var oRouteConfig = {}; if (typeof iShopNo == 'undefined') { oRouteConfig.shop_no = CAFE24.SDE_SHOP_NUM; } else { oRouteConfig.shop_no = iShopNo; } if (typeof bMobile == 'undefined') { oRouteConfig.is_mobile = false; } else { oRouteConfig.is_mobile = bMobile; } if (typeof sFrontLanguage == 'undefined') { oRouteConfig.language_code = ''; }else { oRouteConfig.language_code = sFrontLanguage; // 내부에서 로직으로 동작할땐 언어_지역 형태의 로케일 형태를 따른다. } if (typeof sSkinCode == 'undefined') { oRouteConfig.skin_code = ''; }else { oRouteConfig.skin_code = sSkinCode; } var sDomain = ''; if (oRouteConfig.shop_no != CAFE24.SDE_SHOP_NUM) { // 접근된 다른 멀티샵 도메인 정보는 primary domain 를 조회해야함으로 ajax 를 통해 정보를 얻는다. sDomain = this._getUrlDomainMultishop(oRouteConfig); } else { // 샵이 동일할 경우에는 접근된 domain 에 path 정보만 정리하여 반환함. sDomain = this._getUrlDomain(oRouteConfig); } return sDomain; }, _getUrlDomainMultishop: function (oRouteConfig) { var sDomain = ''; EC$.ajax({ type: 'GET', url: '/exec/front/Shop/Domain', data: { '_shop_no' : oRouteConfig.shop_no, 'is_mobile' : oRouteConfig.is_mobile, 'language_code' : oRouteConfig.language_code, 'skin_code' : oRouteConfig.skin_code, }, async: false, dataType: 'json', cache: true, success: function(oResult) { switch (oResult.code) { case '0000' : sDomain = oResult.data; break; default : break; } return false; } }); return sDomain; }, _getUrlDomain: function (oRouteConfig) { oRouteConfig.domain = this._getCreateHost(oRouteConfig); return location.protocol + '//' + oRouteConfig.domain + this._getCreateUri(oRouteConfig); }, _getCreateHost : function (oRouteConfig) { var sHost = location.host; var aHost = sHost.split('.'); if (this.isBaseDomain(sHost)) { if (aHost.length > 3) { aHost[0] = ''; } } else if (oRouteConfig.is_mobile) { if (this.isMobileDomain()) { oRouteConfig.is_mobile = false; } } return aHost.filter(Boolean).join('.'); }, _getCreateUri: function (oRouteInfo) { var aUrl = []; if (this.isBaseDomain() && oRouteInfo.shop_no > 1) { aUrl.push('shop' + oRouteInfo.shop_no); } if (oRouteInfo.is_mobile) { aUrl.push('m'); } if (oRouteInfo.language_code != 'ZZ' && oRouteInfo.language_code != '') { var iIndex = Object.values(CAFE24.ROUTE.support_language_list).indexOf(oRouteInfo.language_code); if (iIndex !== -1) { aUrl.push(Object.keys(CAFE24.ROUTE.support_language_list)[iIndex]); } } if (this.isBaseDomain() && oRouteInfo.skin_code != 'default' && oRouteInfo.skin_code != '') { aUrl.push('skin-' + oRouteInfo.skin_code); } var sUrl= '/'; if (aUrl.length > 0) { sUrl= '/' + aUrl.join('/'); sUrl = this.rtrim(sUrl, '/'); } return sUrl; }, /** * en, en-US => en_US */ convertValidLanguageCode: function (sUrlLanguageCode) { if (typeof CAFE24.ROUTE.support_language_list[sUrlLanguageCode] != 'undefined') { return CAFE24.ROUTE.support_language_list[sUrlLanguageCode]; } return false; }, isMobileDomain: function (sHost) { if (typeof sHost == 'undefined') { sHost = location.host; } var aMatched = sHost.match(/^(m|mobile|skin\-mobile|skin\-mobile[0-9]+[\-]{2}shop[0-9]+|skin\-mobile[0-9]+|mobile[\-]{2}shop[0-9]+)\./i); return aMatched != null; }, isBaseDomain: function (sHost) { if (typeof sHost == 'undefined') { sHost = location.host; } return sHost.indexOf(CAFE24.GLOBAL_INFO.getRootDomain()) !== -1; }, removePrefixUrl: function (sUrl) { if (this.isNeedRoute()) { sUrl = sUrl.replace(this.getPrefixUrl('/'), '/'); // 자동으로 prefix 붙은 영역을 제거해준다. } return sUrl; }, getPrefixUrl: function (sUrl) { if (this.isNeedRoute() === false) { return sUrl; } if (sUrl.indexOf('/') !== 0) { return sUrl; } if (sUrl.match(/^\/{2,}/) !== null) { return sUrl; } var iCachedPosition = this.aFromList.indexOf(sUrl); if (iCachedPosition > -1) { return this.aToList[iCachedPosition]; } var bTailSlash = (sCleanUrl !== '/' && sUrl.substr(-1) === '/'); var sCleanUrl = this.getCleanUrl(sUrl); var aPrefixPart = CAFE24.ROUTE.path.prefix.split('/'); var aUrlPart = sCleanUrl.split('/'); var bMatched = true; var sReturnUrl = sCleanUrl; if (aUrlPart.length < aPrefixPart.length) { bMatched = false; } else { for (var i = 0; i < aPrefixPart.length ; i++) { if (aPrefixPart[i] != aUrlPart[i]) { bMatched = false; break; } } } if (bMatched === false) { if (sCleanUrl == '/') { sReturnUrl = CAFE24.ROUTE.path.prefix; } else { sReturnUrl = CAFE24.ROUTE.path.prefix + sCleanUrl; } sReturnUrl = bTailSlash ? sReturnUrl : this.rtrim(sReturnUrl, '/') this.aFromList.push(sUrl); this.aToList.push(sReturnUrl); } return sReturnUrl; }, /** * document.location.pathname 이 필요할 경우 사용한다. * @returns {*} */ getPathName: function() { if (typeof CAFE24.ROUTE.path.result == 'undefined') { return document.location.pathname; } return CAFE24.ROUTE.path.result; }, rtrim: function (str, chr) { var rgxtrim = (!chr) ? new RegExp('\\s+$') : new RegExp(chr+'+$'); return str.replace(rgxtrim, ''); }, getShopNo: function () { return CAFE24.ROUTE.shop_no; }, getSkinCode: function () { return CAFE24.ROUTE.skin_code; }, getLanguageCode: function () { return CAFE24.ROUTE.language_code; }, getMobile: function () { return CAFE24.ROUTE.is_mobile; }, getIsMobile: function () { return CAFE24.ROUTE.is_mobile || CAFE24.ROUTE.skin_code.match(/^mobile[0-9]*$/); }, getCleanUrl: function (sUrl) { if (sUrl === '/') { return sUrl; } var aUrl = sUrl.split('/'); aUrl.shift(); if (aUrl.length < 1) { return sUrl; } // 현재 4 depth 까지 미리보기 기능이 구현되어있음 var iPos = 0; var bFind = false; for (var i = 0; i < aUrl.length ; i++) { bFind = false; for (var iSub = iPos, iSubCount = this.aCleanFilter.length; iSub < iSubCount ; iSub++) { if (aUrl[i].match(this.aCleanFilter[iSub]) !== null) { bFind = true; iPos = iSub + 1; aUrl.splice(i, 1); i--; // aUrl 을 삭제해 주었으니 검색 조건을 -1 제거하여 초기화 한다. 다음 for i++ 로 증감 조회됨. break; } } if (bFind === false) { break; } } return '/' + aUrl.join('/'); }, getIsEasyUrl : function () { return !window.location.pathname.match(/^[\w\/\-\.]+(php|html|htm)$/i); } }; EC_ROUTE.init(); } </script> <meta name="path_role" content="MEMBER_PRIVACY" /> <meta name="author" content="GOALSTUDIO" /> <meta name="description" content="GOALSTUDIO is a football-inspired lifestyle brand built on an in-depth understanding of football culture from the world’s largest digital football destination, Goal (goal.com), which is published in 18 languages across 38 editions. Our vision is to help create a healthier society by spreading a positive message within football through various forms of products. “Everything I know about morality and the obligations of men, I owe it to football” - Albert Camus" /> <meta name="keywords" content="GOALSTUDIO,GOAL,Football,soccer,fashion.streetfootball,menswear,sportswear" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><!-- Do not delete. Required code for payment. --><meta http-equiv="Cache-Control" content="no-cache"/><meta http-equiv="Expires" content="0"/><meta http-equiv="Pragma" content="no-cache"/><!-- // Do not delete. Required code for payment. --><!-- Google Tag Manager --><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-W7SHVS6');</script><!-- End Google Tag Manager --><link rel="stylesheet" href="/web/upload/brushlab/new/css/bootstrap.css" type="text/css"/><link rel="stylesheet" href="/web/upload/brushlab/new/style_Barlow.css" type="text/css"/><link rel="stylesheet" href="/web/upload/brushlab/new/css/dark.css" type="text/css"/><link rel="stylesheet" href="/web/upload/brushlab/new/css/font-icons.css" type="text/css"/><link rel="stylesheet" href="/web/upload/brushlab/new/css/custom.css" type="text/css"/><link rel="stylesheet" href="https://maxcdn.icons8.com/fonts/line-awesome/1.1/css/line-awesome.min.css"/><link rel="stylesheet" href="/web/upload/brushlab/css/components/radio-checkbox.css" type="text/css"/><meta property="og:image" content="https://www.goalstudio.com/web/upload/goal/images/share/goalstudio_21ss.png"> <link rel="alternate" hreflang="ko" href="https://en.goalstudio.com" /> <link rel="canonical" href="https://en.goalstudio.com/member/privacy.html" /> <link rel="alternate" href="https://m.en.goalstudio.com/member/privacy.html" /> <meta property="og:url" content="https://en.goalstudio.com/member/privacy.html" /> <meta property="og:title" content="GOALSTUDIO" /> <meta property="og:description" content="I HAVE A DREAM. GOALSTUDIO 21 S/S COLLECTION" /> <meta property="og:site_name" content="GOALSTUDIO" /> <meta property="og:type" content="website" /> <link rel="shortcut icon" href="/web/upload/favicon_20190306023747.ico" /> <script type="text/javascript">var CAFE24API = { instance : [], MALL_ID : 'goalstudio', SHOP_NO : 2, init : function (appInfo) { if (typeof appInfo == 'object') { if (appInfo.hasOwnProperty('client_id')) { var appKey = appInfo.client_id; } } else { var appKey = appInfo; } if (appKey) { if (!this.instance[appKey]) { CAFE24API.clientId = appKey; if (appInfo.hasOwnProperty('version')) { CAFE24API.version = appInfo.version; } else { if (CAFE24API.hasOwnProperty('version')) { delete CAFE24API.version; } } var copyObject = CAFE24API.constructor(); for (var attr in CAFE24API) { if (CAFE24API.hasOwnProperty(attr)) { copyObject[attr] = CAFE24API[attr]; } } this.instance[appKey] = copyObject; } return this.instance[appKey]; } }, initializeXhr : function () { try { return new XMLHttpRequest(); } catch (error) { return new window.ActiveXObject('Microsoft.XMLHTTP'); } }, fullPath: function (url) { return 'https://goalstudio.cafe24api.com' + url; }, getLoginProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback({'login': CAPP_ASYNC_METHODS.AppCommon.getLoginProvider()}); }, getCustomerProvider: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback({'login': CAPP_ASYNC_METHODS.AppCommon.getCustomerProvider()}); }, getMemberID: function (callback) { if (!CAPP_ASYNC_METHODS.IS_LOGIN) { callback(null); } else { callback(CAPP_ASYNC_METHODS.AppCommon.getMemberID()); } }, getEncryptedMemberId: function (client_id, callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getEncryptedMemberId(client_id)); }, getMemberInfo: function (callback) { callback({'id': CAPP_ASYNC_METHODS.AppCommon.getMemberInfo()}); }, getCustomerIDInfo: function (callback) { if (!CAFE24API.__scopeErr(callback, 'application')) { return; } callback(null, {'id': CAPP_ASYNC_METHODS.AppCommon.getCustomerIDInfo()}); }, getCustomerInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'customer': CAPP_ASYNC_METHODS.AppCommon.getCustomerInfo()}); }, getMileageInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'mileage': CAPP_ASYNC_METHODS.AppCommon.getMileageInfo()}); }, getPointInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'point': CAPP_ASYNC_METHODS.AppCommon.getPointInfo()}); }, getDepositInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'deposit': CAPP_ASYNC_METHODS.AppCommon.getDepositInfo()}); }, getCreditInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'customer')) { return; } callback(null, {'credit': CAPP_ASYNC_METHODS.AppCommon.getCreditInfo()}); }, getCartList: function (callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.getCartList().then(function(data){ callback(null, {'carts': data}); }); }, getCartInfo: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, {'cart': CAPP_ASYNC_METHODS.AppCommon.getCartInfo()}); }, getCartItemList: function (callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } callback(null, {'items': CAPP_ASYNC_METHODS.AppCommon.getCartItemList()}); }, getCartCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getCartCount()); }, getCouponCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'promotion')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getCouponCount()); }, getWishCount: function (callback) { if (!CAFE24API.__chkValidSessionScope(callback, 'personal')) { return; } callback(null, CAPP_ASYNC_METHODS.AppCommon.getWishCount()); }, getShopInfo: function (callback) { if (!CAFE24API.__scopeErr(callback, 'store')) { return; } callback(null, {'shop': CAPP_ASYNC_METHODS.AppCommon.getShopInfo()}); }, addCurrentProductToCart: function (mall_id, time, app_key, member_id, hmac, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.addCurrentProductToCart(mall_id, time, app_key, member_id, hmac).then(function(data){ callback(null, {'cart': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error('422'), {'error': {code: 422, message: 'This sdk is not available on the current page'}}); } }); }, precreateOrder: function (mall_id, time, app_key, member_id, hmac, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.precreateOrder(mall_id, time, app_key, member_id, hmac).then(function(data){ callback(null, {'order': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error('422'), {'error': {code: 422, message: 'This sdk is not available on the current page'}}); } }); }, getOrderItemList: function (start_date, end_date, order_status, page, count, order_id, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getOrderItemList(start_date, end_date, order_status, page, count, order_id).then(function(data){ callback(null, {'items': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, getOrderDetailInfo: function (shop_no, order_id, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getOrderDetailInfo(shop_no, order_id).then(function(data){ callback(null, {'orders': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, getClaimableItemList: function (order_id, customer_service_type, callback) { if (!CAFE24API.__scopeErr(callback, 'order')) { return; } CAPP_ASYNC_METHODS.AppCommon.getClaimableItemList(order_id, customer_service_type).then(function(data){ callback(null, {'items': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }); }, emptyCart: function (basket_shipping_type, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.emptyCart(basket_shipping_type).then(function (data) { callback(null, {'result': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) ; }, deleteCartItems: function (basket_shipping_type, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.deleteCartItems(basket_shipping_type, product_list).then(function (data) { callback(null, {'result': data}); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) ; }, addCart: function (basket_type, prepaid_shipping_fee, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.addCart(basket_type, prepaid_shipping_fee, product_list).then(function (data) { callback(null, data); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) }, addBundleProductsCart: function (basket_type, prepaid_shipping_fee, product_list, callback) { if (!CAFE24API.__scopeErr(callback, 'personal')) { return; } CAPP_ASYNC_METHODS.AppCommon.addBundleProductsCart(basket_type, prepaid_shipping_fee, product_list).then(function (data) { callback(null, data); }).catch(function (data) { if (data) { callback(new Error('422'), {'error': {code: data.code, message: data.message}}); } else { callback(new Error(422), { 'error': { code: 422, message: 'This sdk is not available on the current page' } }); } }) }, get : function(url, callback) { return CAFE24API.complete('GET', url, this, null, callback); }, post : function(url, params, callback) { return CAFE24API.complete('POST', url, this, params, callback); }, put : function(url, params, callback) { return CAFE24API.complete('PUT', url, this, params, callback); }, delete : function(url, callback) { return CAFE24API.complete('DELETE', url, this, null, callback); }, complete : function(method, url, obj, params, callback) { var xhr = CAFE24API.sendXhr(method, url, obj, params, callback); xhr.onreadystatechange = function () { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status >= 200 && xhr.status <= 208) { callback(null, JSON.parse(xhr.responseText)); } else { callback(new Error(xhr.status), JSON.parse(xhr.responseText)); } } }; }, sendXhr : function (method, url, obj, params, callback) { if (method !== 'POST') { var url = obj.fullPath(url); } var xhr = obj.initializeXhr(); var queryVars = {}; if (obj.clientId) queryVars['cafe24_app_key'] = obj.clientId; if (obj.version) queryVars['cafe24_api_version'] = obj.version; if (params === null) { var seperator = url.indexOf('?') == -1 ? '?' : '&'; var queryString = []; for (var key in queryVars) { queryString.push(key + '=' + queryVars[key]); } if (queryString.length > 0) { url = url + seperator + queryString.join('&'); } } xhr.open(method, url, true); if (typeof params == 'object' && params !== null) { xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded; charset=utf-8'); for (var key in queryVars) { params[key] = queryVars[key]; } params = 'formData=' + JSON.stringify(params); } xhr.send(params || null); return xhr; }, __sessionErr: function (callback) { callback(new Error(403), {'error': {code: 403, message: 'Failed to get session. Only available when log in.'}}); }, __scopeErr: function (callback, scope) { if (typeof CAFE24.APPSCRIPT_SDK_DATA != "undefined" && jQuery.inArray(scope, CAFE24.APPSCRIPT_SDK_DATA ) > -1 ) { return true; } callback(new Error(403), {'error': {code: 403, message: 'You do not have the necessary authority(scope) to use the SDK.'}}); }, __chkValidSessionScope: function (callback, scope) { if (!CAPP_ASYNC_METHODS.IS_LOGIN) { CAFE24API.__sessionErr(callback); return false; } if (!CAFE24API.__scopeErr(callback, scope)) { return false; } return true; } }; </script> <script type="text/javascript"> window.CAFE24 = window.CAFE24 || {}; CAFE24.MANIFEST_CACHE_REVISION = '2411201348'; CAFE24.getDeprecatedNamespace = function(sDeprecatedNamespace, sSupersededNamespace) { var sNamespace = sSupersededNamespace ? sSupersededNamespace : sDeprecatedNamespace.replace(/^EC_/, ''); return CAFE24[sNamespace]; } CAFE24.FRONT_LANGUAGE_CODE = "en_US"; CAFE24.MOBILE = false; CAFE24.MOBILE_DEVICE = false; CAFE24.MOBILE_USE = true; var EC_MOBILE = CAFE24.MOBILE; var EC_MOBILE_DEVICE = CAFE24.MOBILE_DEVICE; var EC_MOBILE_USE = CAFE24.MOBILE_USE; CAFE24.SKIN_CODE = "skin56"; CAFE24.FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = {"common_member_id_crypt":""}; var EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = CAFE24.getDeprecatedNamespace('EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA'); CAFE24.SDE_SHOP_NUM = 2;CAFE24.SHOP = {getLanguage : function() { return "en_US"; },getCurrency : function() { return "USD"; },getFlagCode : function() { return "US"; },getTimezone: function() { return "Asia/Seoul" },getDateFormat: function() { return "Y-m-d" },isMultiShop : function() { return true; },isDefaultShop : function() { return false; },isDefaultLanguageShop : function(sLanguageCode) { return SHOP.isDefaultShop() && SHOP.isLanguageShop(sLanguageCode); },isKR : function() { return false; },isUS : function() { return true; },isJP : function() { return false; },isCN : function() { return false; },isTW : function() { return false; },isES : function() { return false; },isPT : function() { return false; },isVN : function() { return false; },isPH : function() { return false; },getCountryAndLangMap : function() { return { "KR": "ko_KR", "US": "en_US", "JP": "ja_JP", "CN": "zh_CN", "TW": "zh_TW", "VN": "vi_VN", "PH": "en_PH" }},isLanguageShop : function(sLanguageCode) { return sLanguageCode === "en_US"; },getDefaultShopNo : function() { return 1; },getProductVer : function() { return 2; },isSDE : function() { return true; },isMode : function() {return false; },getModeName : function() {return false; },isMobileAdmin : function() {return false; },isNewProMode : function() {return true; },isExperienceMall : function() { return false; },isDcollection : function() {return false; },isYoutubeShops : function() {return false; },getYtShopsShopNo : function() {return 0; },getAdminID : function() {return ''},getMallID : function() {return 'goalstudio'},getCurrencyFormat : function(sPriceTxt, bIsNumberFormat) { sPriceTxt = String(sPriceTxt); var aCurrencySymbol = ["$","",false]; if (typeof CAFE24.SHOP_PRICE !== 'undefined' && isNaN(sPriceTxt.replace(/[,]/gi, '')) === false && bIsNumberFormat === true) { // bIsNumberFormat 사용하려면 Ui(':libUipackCurrency')->plugin('Currency') 화폐 라이브러리 추가 필요 sPriceTxt = CAFE24.SHOP_PRICE.toShopPrice(sPriceTxt.replace(/[,]/gi, ''), true, CAFE24.SDE_SHOP_NUM); } try { var sPlusMinusSign = (sPriceTxt.toString()).substr(0, 1); if (sPlusMinusSign === '-' || sPlusMinusSign === '+') { sPriceTxt = (sPriceTxt.toString()).substr(1); return sPlusMinusSign + aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1]; } else { return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1]; } } catch (e) { return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1]; } }};CAFE24.CURRENCY_INFO = {getOriginReferenceCurrency : function() {return 'SGD'},getCurrencyList : function(sCurrencyCode) { var aCurrencyList = {"KRW":{"currency_symbol":"\uffe6","decimal_place":0,"round_method_type":"F"},"JPY":{"currency_symbol":"¥","decimal_place":0,"round_method_type":"F"},"VND":{"currency_symbol":"₫","decimal_place":0,"round_method_type":"F"},"PHP":{"currency_symbol":"₱","decimal_place":2,"round_method_type":"R"},"CNY":{"currency_symbol":"¥","decimal_place":2,"round_method_type":"R"},"TWD":{"currency_symbol":"NT$","decimal_place":0,"round_method_type":"F"},"EUR":{"currency_symbol":"\u20ac","decimal_place":2,"round_method_type":"R"},"BRL":{"currency_symbol":"R$","decimal_place":2,"round_method_type":"R"},"AUD":{"currency_symbol":"A$","decimal_place":2,"round_method_type":"R"},"BHD":{"currency_symbol":".د.ب","decimal_place":3,"round_method_type":"R"},"BDT":{"currency_symbol":"৳","decimal_place":2,"round_method_type":"R"},"GBP":{"currency_symbol":"£","decimal_place":2,"round_method_type":"R"},"CAD":{"currency_symbol":"C$","decimal_place":2,"round_method_type":"R"},"CZK":{"currency_symbol":"Kč","decimal_place":2,"round_method_type":"R"},"DKK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"HKD":{"currency_symbol":"HK$","decimal_place":2,"round_method_type":"R"},"HUF":{"currency_symbol":"Ft","decimal_place":2,"round_method_type":"R"},"INR":{"currency_symbol":"₹","decimal_place":2,"round_method_type":"R"},"IDR":{"currency_symbol":"Rp","decimal_place":0,"round_method_type":"F"},"ILS":{"currency_symbol":"₪","decimal_place":2,"round_method_type":"R"},"JOD":{"currency_symbol":" دينار","decimal_place":3,"round_method_type":"R"},"KWD":{"currency_symbol":"دينار","decimal_place":3,"round_method_type":"R"},"MYR":{"currency_symbol":"RM","decimal_place":2,"round_method_type":"R"},"MXN":{"currency_symbol":"Mex$","decimal_place":2,"round_method_type":"R"},"NZD":{"currency_symbol":"NZ$","decimal_place":2,"round_method_type":"R"},"NOK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"PKR":{"currency_symbol":"₨","decimal_place":2,"round_method_type":"R"},"PLN":{"currency_symbol":"z\u0142","decimal_place":2,"round_method_type":"R"},"RUB":{"currency_symbol":"\u0440\u0443\u0431","decimal_place":2,"round_method_type":"R"},"SAR":{"currency_symbol":"﷼","decimal_place":2,"round_method_type":"R"},"SGD":{"currency_symbol":"S$","decimal_place":2,"round_method_type":"R"},"ZAR":{"currency_symbol":"R","decimal_place":2,"round_method_type":"R"},"SEK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"CHF":{"currency_symbol":"Fr","decimal_place":2,"round_method_type":"R"},"THB":{"currency_symbol":"฿","decimal_place":2,"round_method_type":"R"},"TRY":{"currency_symbol":"TL","decimal_place":2,"round_method_type":"R"},"AED":{"currency_symbol":"فلس","decimal_place":2,"round_method_type":"R"}}; return aCurrencyList[sCurrencyCode] },isUseReferenceCurrency : function() {return false }};CAFE24.COMMON_UTIL = {convertSslForString : function(sString) { return sString.replace(/http:/gi, '');},convertSslForHtml : function(sHtml) { return sHtml.replace(/((?:src|href)\s*=\s*['"])http:(\/\/(?:[a-z0-9\-_\.]+)\/)/ig, '$1$2');},getProtocol : function() { return 'https'; },moveSsl : function() { if (CAFE24.COMMON_UTIL.getProtocol() === 'http') { var oLocation = jQuery(window.location); var sUrl = 'https://' + oLocation.attr('host') + oLocation.attr('pathname') + oLocation.attr('search'); window.location.replace(sUrl); } },setEcCookie : function(sKey, sValue, iExpire) {var exdate = new Date();exdate.setDate(exdate.getDate() + iExpire);var setValue = escape(sValue) + "; domain=." + CAFE24.GLOBAL_INFO.getBaseDomain() + "; path=/;expires=" + exdate.toUTCString();document.cookie = sKey + "=" + setValue;}};CAFE24.SHOP_LIB_INFO = {getBankInfo : function() { var oBankInfo = ""; $.ajax({ type: "GET", url: "/exec/front/Shop/Bankinfo", dataType: "json", async: false, success: function(oResponse) { oBankInfo = oResponse; } }); return oBankInfo; }}; var EC_SDE_SHOP_NUM = CAFE24.SDE_SHOP_NUM; var SHOP = CAFE24.getDeprecatedNamespace('SHOP'); var EC_COMMON_UTIL = CAFE24.getDeprecatedNamespace('EC_COMMON_UTIL'); var EC_SHOP_LIB_INFO = CAFE24.getDeprecatedNamespace('EC_SHOP_LIB_INFO'); var EC_CURRENCY_INFO = CAFE24.getDeprecatedNamespace('EC_CURRENCY_INFO'); CAFE24.ROOT_DOMAIN = "cafe24.com"; CAFE24.API_DOMAIN = "cafe24api.com"; CAFE24.TRANSLATE_LOG_STATUS = "F"; CAFE24.GLOBAL_INFO = (function() { var oData = {"base_domain":"goalstudio.cafe24.com","root_domain":"cafe24.com","api_domain":"cafe24api.com","is_global":false,"is_global_standard":false,"country_code":"KR","language_code":"ko_KR","admin_language_code":"ko_KR"}; return { getBaseDomain: function() { return oData['base_domain']; }, getRootDomain: function() { return oData['root_domain']; }, getApiDomain: function() { return oData['api_domain']; }, isGlobal: function() { return oData['is_global']; }, isGlobalStandard: function() { return oData['is_global_standard']; }, getCountryCode: function() { return oData['country_code']; }, getLanguageCode: function() { return oData['language_code']; }, getAdminLanguageCode: function() { return oData['admin_language_code']; } }; })(); var EC_ROOT_DOMAIN = CAFE24.ROOT_DOMAIN; var EC_API_DOMAIN = CAFE24.API_DOMAIN; var EC_TRANSLATE_LOG_STATUS = CAFE24.TRANSLATE_LOG_STATUS; var EC_GLOBAL_INFO = CAFE24.getDeprecatedNamespace('EC_GLOBAL_INFO'); CAFE24.AVAILABLE_LANGUAGE = ["ko_KR","zh_CN","en_US","zh_TW","es_ES","pt_PT","vi_VN","ja_JP","en_PH"]; CAFE24.AVAILABLE_LANGUAGE_CODES = {"ko_KR":"KOR","zh_CN":"CHN","en_US":"ENG","zh_TW":"TWN","es_ES":"ESP","pt_PT":"PRT","vi_VN":"VNM","ja_JP":"JPN","en_PH":"PHL"}; var EC_AVAILABLE_LANGUAGE = CAFE24.AVAILABLE_LANGUAGE; var EC_AVAILABLE_LANGUAGE_CODES = CAFE24.AVAILABLE_LANGUAGE_CODES; CAFE24.GLOBAL_PRODUCT_LANGUAGE_CODES = { sClearanceCategoryCode: '', sManualLink: '//support.cafe24.com/hc/ko/articles/7739013909529', sHsCodePopupLink: 'https://www.wcotradetools.org/en/harmonized-system', aCustomRegex: '"PHL" : "^[0-9]{8}[A-Z]?$"', sCountryCodeData: 'kor', sEnglishExampleURlForGlobal: '', aReverseAddressCountryCode: ["VNM","PHL"], aSizeGuideCountryAlign: '["US","UK","EU","KR","JP","CN"]', aIsSupportTran: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH","pt_PT","es_ES"] }; var EC_GLOBAL_PRODUCT_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_PRODUCT_LANGUAGE_CODES'); CAFE24.GLOBAL_ORDER_LANGUAGE_CODES = { aModifyOrderLanguage: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","VN":"vi_VN","PH":"en_PH"}, aUseIdCardKeyCountry: ["CN","TW"], aLanguageWithCountryCode: {"zh_CN":["CN","CHN","HK","HNK"],"ja_JP":["JP","JPN"],"zh_TW":["TW","TWN"],"ko_KR":["KR","KOR"],"vi_VN":["VN","VNM"],"en_PH":["PH","PHL"]}, aCheckDisplayRequiredIcon: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH"], aSetReceiverName: {"zh_CN":{"sCountry":"CN","bUseLastName":true},"zh_TW":{"sCountry":"TW","bUseLastName":false},"ja_JP":{"sCountry":"JP","bUseLastName":true}}, aSetDeferPaymethodLanguage: {"ja_JP":"\uc77c\ubcf8","zh_CN":"\uc911\uad6d"}, aUseDeferPaymethod: ["ja_JP","zh_CN"], aCheckShippingCompanyAndPaymethod: ["ja_JP","zh_CN"], aSetDeferPaymethodLanguageForShipping: {"ja_JP":"\u65e5\u672c","zh_CN":"\uc911\uad6d"}, aCheckStoreByPaymethod: ["ja_JP","zh_CN"], aCheckIsEmailRequiredForJs: ["en_US","zh_CN","zh_TW","ja_JP","vi_VN","en_PH"], aSetIdCardKeyCountryLanguage: {"CN":"\uc911\uad6d\uc758","TW":"\ub300\ub9cc\uc758"}, aReverseGlobalAddress: ["en_PH","vi_VN","PHL","VNM","VN","PH"], aNoCheckZipCode: ["KOR","JPN"], aNotPostCodeAPICountryList: ["en_US","es_ES","pt_PT","en_PH"], aEnableSearchExchangeAddr: ["KR","JP","CN","VN","TW","PH"], aDuplicatedBaseAddr: ["TW","JP"], aReverseAddressCountryCode: ["VN","PH"], aCheckZipCode: ["PHL","en_PH","PH"] }; var EC_GLOBAL_ORDER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_ORDER_LANGUAGE_CODES'); CAFE24.GLOBAL_MEMBER_LANGUAGE_CODES = { sAdminWebEditorLanguageCode: 'ko' , oNotAvailDecimalPointLanguages: ["ko_KR","ja_JP","zh_TW","vi_VN"], oAddressCountryCode: {"KOR":"ko_KR","JPN":"ja_JP","CHN":"zh_CN","TWN":"zh_TW","VNM":"vi_VN","PHL":"en_PH"}, }; var EC_GLOBAL_MEMBER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MEMBER_LANGUAGE_CODES'); CAFE24.GLOBAL_BOARD_LANGUAGE_CODES = { bUseLegacyBoard: true }; var EC_GLOBAL_BOARD_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_BOARD_LANGUAGE_CODES'); CAFE24.GLOBAL_MALL_LANGUAGE_CODES = { oDesign: { oDesignAddReplaceInfo: {"group_id":"SKIN.ADD.ADMIN.DESIGNDETAIL","replacement":{"KR":"KOREAN","US":"ENGLISH","JP":"JAPANESE","CN":"SIMPLIFIED.CHINESE","TW":"TRADITIONAL.CHINESE","ES":"SPANISH","PT":"PORTUGUESE","PH":"ENGLISH"}}, oDesignDetailLanguageCountryMap: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","US":"en_US","ES":"es_ES","PT":"pt_PT","PH":"en_PH"}, oSmartDesignSwitchTipLink: {"edibot":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/img_editor_dnd.png","link":"\/\/ecsupport.cafe24.com\/board\/free\/list.html?board_act=list&board_no=12&category_no=9&cate_no=9"},"smart":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/ko_KR\/img_editor_smart.png","link":"\/\/sdsupport.cafe24.com"}}, oSmartDesignDecoShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"], oSmartDesignDecoMultilingual: {"list":{"ko_KR":"KOREAN","en_US":"ENGLISH","ja_JP":"JAPANESE","zh_CN":"SIMPLIFIED.CHINESE","zh_TW":"TRADITIONAL.CHINESE","es_ES":"SPANISH","pt_PT":"PORTUGUESE","vi_VN":"VIETNAMESE"},"group_id":"EDITOR.LAYER.EDITING.DECO"}, aSmartDesignModuleShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"] }, oStore: { oMultiShopCurrencyInfo: {"en_US":{"currency":"USD"},"zh_CN":{"currency":"USD","sub_currency":"CNY"},"ja_JP":{"currency":"JPY"},"zh_TW":{"currency":"TWD"},"es_ES":{"currency":"EUR"},"pt_PT":{"currency":"EUR"},"ko_KR":{"currency":"KRW"},"vi_VN":{"currency":"VND"},"en_PH":{"currency":"PHP"}}, oBrowserRedirectLanguage: {"ko":{"primary":"ko_KR","secondary":"en_US"},"en":{"detail":{"en-ph":{"primary":"en_PH","secondary":"en_US"},"en-us":{"primary":"en_US","secondary":"es_ES"},"default":{"primary":"en_US","secondary":"es_ES"}}},"ja":{"primary":"ja_JP","secondary":"en_US"},"zh":{"detail":{"zh-cn":{"primary":"zh_CN","secondary":"en_US"},"zh-tw":{"primary":"zh_TW","secondary":"zh_CN"},"default":{"primary":"en_US","secondary":"ko_KR"}}},"es":{"primary":"es_ES","secondary":"en_US"},"pt":{"primary":"pt_PT","secondary":"en_US"},"vi":{"primary":"vi_VN","secondary":"en_US"},"default":{"primary":"en_US","secondary":"ko_KR"}}, aChangeableLanguages: ["en_US","ja_JP","ko_KR"], aNoZipCodeLanguage: ["ko_KR","ja_JP"] }, oMobile: { sSmartWebAppFaqUrl: "https://support.cafe24.com/hc/ko/articles/8466586607641", sAmpFaqUrl: "https://ecsupport.cafe24.com/board/free/read.html?no=1864&board_no=5&category_no=13&cate_no=13&category_no=13&category_no=13", }, oPromotion: { bQrCodeAvailable: true, bSnsMarketingAvailable: true }, oShippingReverseAddressLanguage: ["vi_VN","en_PH"] , oGlobalStandardSwitchHelpCodeLink: {"SH.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/SH.DS.html"},"PR.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PR.DS.html"},"OR.SM.BO":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/OR.SM.BO.html"},"DE.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/DE.DS.html"},"MB.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/MB.DS.html"},"PM.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PM.DS.html"}}, getAdminMainLocaleLanguage: function(sSkinLocaleCode) { var oLocaleData = []; var locale = ""; var shopLangName = ""; if (sSkinLocaleCode == "US") { locale = "en_US"; shopLangName = "ENGLISH"; } else if (sSkinLocaleCode == "JP") { locale = "ja_JP"; shopLangName = "JAPANESE"; } else if (sSkinLocaleCode == "CN") { locale = "zh_CN"; shopLangName = "SIMPLIFIED.CHINESE"; } else if (sSkinLocaleCode == "TW") { locale = "zh_TW"; shopLangName = "TRADITIONAL.CHINESE"; } else if (sSkinLocaleCode == "ES") { locale = "es_ES"; shopLangName = "SPANISH"; } else if (sSkinLocaleCode == "PT") { locale = "pt_PT"; shopLangName = "PORTUGUESE"; } else if (sSkinLocaleCode == "VN") { locale = "vi_VN"; shopLangName = "VIETNAMESE"; } else if(sSkinLocaleCode == "PH") { locale = "en_PH"; shopLangName = "ENGLISH.PH"; } oLocaleData["locale"] = locale; oLocaleData["shopLangName"] = shopLangName; return oLocaleData; } }; var EC_GLOBAL_MALL_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MALL_LANGUAGE_CODES'); CAFE24.GLOBAL_DATETIME_INFO = { oConstants: {"STANDARD_DATE_REGEX":"\/([12]\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01]))\/","IN_ZONE":"inZone","OUT_ZONE":"outZone","IN_FORMAT":"inFormat","OUT_FORMAT":"outFormat","IN_DATE_FORMAT":"inDateFormat","IN_TIME_FORMAT":"inTimeFormat","OUT_DATE_FORMAT":"outDateFormat","OUT_TIME_FORMAT":"outTimeFormat","IN_FORMAT_DATE_ONLY":1,"IN_FORMAT_TIME_ONLY":2,"IN_FORMAT_ALL":3,"OUT_FORMAT_DATE_ONLY":1,"OUT_FORMAT_TIME_ONLY":2,"OUT_FORMAT_ALL":3,"DATE_ONLY":"YYYY-MM-DD","TIME_ONLY":"HH:mm:ss","FULL_TIME":"YYYY-MM-DD HH:mm:ss","ISO_8601":"YYYY-MM-DD[T]HH:mm:ssZ","YEAR_ONLY":"YYYY","MONTH_ONLY":"MM","DAY_ONLY":"DD","WEEK_ONLY":"e","TIME_H_I_ONLY":"HH:mm","TIME_HOUR_ONLY":"HH","TIME_MINUTE_ONLY":"mm","POSTGRE_FULL_TIME":"YYYY-MM-DD HH24:MI:SS","POSTGRE_TIME_ONLY":" HH24:MI:SS","MICRO_SECOND_ONLY":"u","SEOUL":"Asia\/Seoul","TOKYO":"Asia\/Tokyo","SHANGHAI":"Asia\/Shanghai","TAIPEI":"Asia\/Taipei","HANOI":"Asia\/Bangkok","LOS_ANGELES":"America\/Los_Angeles","LISBON":"Europe\/Lisbon","MADRID":"Europe\/Madrid","SINGAPORE":"Asia\/Singapore","UTC":"Etc\/UTC","MAX_DATETIME":"9999-12-31 23:59:59"}, oOptions: {"inZone":"Asia\/Seoul","inFormat":"YYYY-MM-DD HH:mm:ss","inDateFormat":"YYYY-MM-DD","inTimeFormat":"HH:mm:ss","outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"}, oPolicies: {"shop":{"outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"},"seoul":{"outFormat":"YYYY-MM-DD HH:mm:ss","outZone":"Asia\/Seoul","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"}}, sOverrideTimezone: '', sMomentNamespace: 'EC_GLOBAL_MOMENT' }; CAFE24.FRONT_JS_CONFIG_MANAGE = {"sSmartBannerScriptUrl":"https:\/\/app4you.cafe24.com\/SmartBanner\/tunnel\/scriptTags?vs=1563164396689206","sMallId":"goalstudio","sDefaultAppDomain":"https:\/\/app4you.cafe24.com","sWebLogOffFlag":"F","cdnUrl":"https:\/\/cafe24img.poxo.com\/goalstudio"}; var EC_FRONT_JS_CONFIG_MANAGE = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MANAGE'); CAFE24.FRONT_JS_CONFIG_SHOP = {"search_period":[],"calendar_config":{"maxDate":"2026-11-24","locale":"en"}}; var EC_FRONT_JS_CONFIG_SHOP = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_SHOP'); CAFE24.FRONT_JS_CONFIG_MEMBER = {"sAuthUrl":"https:\/\/ipin-ec.cafe24.com\/certify\/v1\/?action=auth"}; var EC_FRONT_JS_CONFIG_MEMBER = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MEMBER'); typeof window.CAFE24 === "undefined" && (window.CAFE24 = {}); CAFE24.FRONTEND = {"FW_MANIFEST_CACHE_REVISION":2411201348,"IS_WEB_VIEW":"F"}; CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/member\/privacy.html","result":"\/member\/privacy.html","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}}; </script> <link rel="stylesheet" type="text/css" href="//img.echosting.cafe24.com/editors/froala/css/froala_style_ec.min.css?vs=2411201348" charset="utf-8"/> <link rel="stylesheet" type="text/css" href="/ind-script/optimizer.php?filename=nc1LCoAwDIThfXHrOYLeqC3xAU2mpCno7RW8gHQ7zMdPB4RpWY2qYbcoZNzQLTPl1mgzqFOGCHR6h5n-_DmHhtL9hIaEaxB299FoiTfbGPWYCg9S1FBO5ZCi6td_AA&type=css&k=37c9481ac0212340e132f81eba4d1049fee7f18e&t=1681776733" /><link rel="stylesheet" type="text/css" href="/ind-script/optimizer_user.php?filename=tdTBTgQhDAbg-45Xn6ObjeuL-ASd0gyNhRIKq_v2om6M9xmOFPJB_pRCtMTAtHTn6rAZqrcexKD0VYWW2JKCB14Cu2wZ_F3y9RXIHZKFrgwJVaFUuSHdn0b9GXaYkTFw3cUo3q03WNGFfkyylCwfa_4WjjWZTmPBpy5z3GamTcocPLJOkksdfUaTsi64ScbGkxLHdQ689taObuk_2z6npaGTgh7HaPfsqZz5A3W5nC8vc545NnYOt39z93FL6uNTe7TyFqUUydu3_wU&type=css&k=121d14cd23605d356d75c75e6d14c7b665fa5a33&t=1724043354&user=T" /> <title>GOALSTUDIO</title></head><body class="stretched no-transition"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W7SHVS6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <!-- Document Wrapper ============================================= --> <div id="wrapper" class="clearfix"> <!--img src="https://prf.hn/conversion/campaign:1100l5940/clickref:CLICKREF/conversionref:CONVERSIONREF/country:KR/currency:KRW/customertype:CUSTOMERTYPE/custref:CUSTREF/voucher:VOUCHER/[category:CATEGORY/sku:SKU/value:VALUE/quantity:QUANTITY]" width="1" height="2" /--> <!-- Header ============================================= --> <header id="header" class="full-header dark sticky-header"><div id="header-wrap"> <div class="container clearfix" style="height:80px;min-width:1280px"> <!-- Logo ============================================= --> <div id="logo"> <a href="/" class="standard-logo" data-dark-logo="/web/upload/brushlab/2024/symbol.svg"><img src="/web/upload/brushlab/2024/symbol.svg?240619" alt="Logo"/></a> <a href="/" class="retina-logo" data-dark-logo="/web/upload/brushlab/2024/symbol.svg"><img src="/web/upload/brushlab/2024/symbol.svg?240619" alt="Logo"/></a> </div><!-- #logo end --> <!-- Primary Navigation ============================================= --> <nav id="primary-menu" class="with-arrows on-click clearfix"><ul style="margin-left: 120px;"><li><a href="/category/all/148/"> <div>SHOP</div> </a> </li><li class="split">|</li> <!--li><a href="/lookbook/lookbook_index.html"> <div>LOOKBOOK</div> </a></li> <li>|</li--> <li><a href="/lookbook/editorial_index.html"> <div>LOOKBOOK</div> </a></li> <li class="split">|</li> <li><a href="/journal/journal-list-2.html?cate_no=43"> <div>STORY</div> </a></li> <!-- <li>|</li> <li><a href="/journal/journal-list-2.html?cate_no=208"> <div>NEWS</div> </a></li!--> <!-- <li class="split">|</li> <li><a href="https://goalstudio.com/Stores.html"> <div>STORES</div> </a></li> --> <!-- <li class="split">|</li> <li><a href="/goalclub/"> <div>GOAL CLUB</div> </a></li> --> <li class="split">|</li> <li><a href="/about.html" style="padding: 0 0px 0 15px;"> <div>ABOUT GOALSTUDIO</div> </a></li> </ul><!-- TOP LANGUAGE ============================================= --><div id="top-flag" class="flagMenu" style="padding: 0;width: 80px;margin-right: -22px;"> <ul><li><a href="" id="top-falg-trigger" class="" style="padding-left:11px">ENG<i class="la la-angle-down" style="padding: 4px 0 0px 7px;font-size: 12px;margin-right: 0;"></i></a> <ul id="flagList"><li><a class="dropdown-item" href="https://goalstudio.com">KOR</a></li> <li><a class="dropdown-item" href="https://www.goalstudio.jp">JPN</a></li> <li><a class="dropdown-item" href="https://cn.goalstudio.com">CHN</a></li> <!--li><a class="dropdown-item" href="https://es.goalstudio.com">ESP</a></li--> </ul></li> </ul></div> <div style="display: inline-block; float: right; height:80px; padding-right:20px;"> <!-- Top Search ============================================= --> <div id="top-search"> <a href="#" id="top-search-trigger"><img src="/web/upload/brushlab/2024/topSearch_g.png" class="topSearch" width="18"/><i class="icon-line-cross"></i></a> <form id="searchForm" name="" action="/product/search.html" method="get" target="_self" enctype="multipart/form-data" > <input id="view_type" name="view_type" value="" type="hidden" /> <input id="supplier_code" name="supplier_code" value="" type="hidden" /><span class="xans-element- xans-search xans-search-form "><span style="display:none">상품코드/상품명/제조사</span> <form id="searchBarForm" name="" action="/product/search.html" method="get" enctype="multipart/form-data"> <input id="keyword" name="keyword" fw-filter="" fw-label="검색어" fw-msg="" class="inputTypeText" placeholder="검색어를 입력하세요" onmousedown="SEARCH_BANNER.clickSearchForm(this)" value="" type="text"/> </form> </span> </form> </div><!-- #top-search end --> <!-- Top Cart ============================================= --> <!-- #top-cart end --> <div id="top-cart" class="xans-element- xans-layout xans-layout-statelogoff "><a href="/order/basket.html" style="width: 23px;height: 23px;"><img src="/web/upload/brushlab/2024/topCart_g.png" style="width: auto;height: 20px;"/><span class="count cartCount displaynone EC-Layout_Basket-count-display"><span class="EC-Layout-Basket-count"></span></span> </a> </div> <!-- #top-cart end --> <!-- Top Account # Login ============================================= --> <!-- .top-links end --> <!-- Top Account #Logoff ============================================= --> <div id="top-account" style="padding:0" class="xans-element- xans-layout xans-layout-statelogoff "><ul> <li> <a href="#" id="top-myaccount-trigger" style="margin-top:-3px"><img src="/web/upload/brushlab/2024/topUser_g.png" style="width:16px;"/></a> <ul id="myAccountList" class="myAccountList"> <li><a href="/member/login.html">로그인</a></li> <li><a href="/member/join.html">회원가입</a></li> <li><a href="/myshop/coupon/coupon.html" style="min-width:50px;">쿠폰</a></li> <li><a href="/myshop/order/list_order.html">주문조회</a></li> <li><a href="/myshop/order/list_return.html">반품 신청</a></li> <li><a href="/board/notice/notice.html">문의하기</a></li> </ul> </li> </ul> </div> <!-- Top Help ============================================= --> <div id="top-help"><a href="/board/notice/notice.html" style="width:20px; height:20px; cursor:pointer"><img src="/web/upload/brushlab/2024/topHelp_g.png" style="width: 20px;"/></a></div> </div> </nav><!-- #primary-menu end --></div> <!-- 롤링배너 ============================================= --> <!--div class="testimonial center" style="min-width:1280px;"> <div class="testi-content"> <p><span class="font-white" style="font-weight:bold; padding:15px;"></span>Originated from the #1 football digital media for worldwide fans to express their passion for football</p> </div> </div--> <div class="clearfix"></div> </div> </header><!-- #header end --><section id="content"><div class="content-wrap"> <div class="container clearfix"> <div class="path"> <span>Current Page</span> <ol><li><a href="/">Home</a></li> <li title="Current Page"><strong>Privacy Policy</strong></li> </ol></div> <div class="titleArea"> <h2>Privacy Policy</h2> </div> <div class="xans-element- xans-mall xans-mall-privacy "><div class="ec-base-box typeThinBg"> <strong class="date displaynone"></strong> <div class="agree"> <div class="fr-view fr-view-privacy-all"><p><span style="font-size: 9pt;">Corporation (herein after referred to as “WAGTI Inc.”) regards the privacy of users as highly important and complies with all regulations concerning the “Act on Protection of Information and Promotion of Utilization of Information and Communications Network.”</span></p><p>By stating its privacy policy as shown below, the Company hereby informs users of the purpose and use of personal information provided by the user to the Company, and the measures taken for the protection of their personal information. </p><p>■ Personal information collected and the means of collection <br />A. Information we collect <br />• The Company collects the following data for the purpose of membership sign-ups, consultations, and service applications.<br />o When signing up for membership: Name, birthday, gender, ID, password, home phone number, mobile number, e-mail, legal representative information for subscribers under the age of 14. <br />o When applying for services: Address, payment information<br />• Information collected through use of online services or the processing process: use record, access log, cookies, connecting IP information, payment record, unruly use, and others.</p><p>B. Means of collecting personal information <br />• Personal information is collected through the website, letter, message boards, e-mail, event entries, delivery request forms, phone, fax, and generated data collection tool. </p><p>■ Purpose of collection and use of personal information<br />The Company collects personal information for the following purposes and use. <br />• Provision of services obligated by fulfillment of contract and the payment that follows <br />Supply content, purchase and payment, delivery of goods, billing statements and others, user verifications for financial transactions and financial services. <br />• Member management <br />Identify user to access members-only services, verify user, prevent unauthorized use, check membership subscription, validate age, confirm consent/agreement from legal representative for users under the age of 14, handle complaints and civil affairs, and deliver notices. <br />• Marketing and promotional use <br />Delivery of events and unsolicited advertisements; gain a statistical understanding of the members’ frequency of access to and use of site.</p><p>■ Period of possession and utilization of personal information<br />As a general rule, once the personal data has fulfilled the purposes for which they were collected, they are to be immediately discarded. Except for the following that will be retained for certain periods for reasons noted below.</p><p>A. Information held according to the Company’s internal policies <br />Even when a member has canceled his/her membership, the member’s personal information may be retained for 00 years from the date of cancelation in order to resolve future disputes, to cooperate with the requests of law enforcement agencies, and to prevent the recurrence of fraudulent uses by unruly members. </p><p>B. Grounds for holding personal information according to applicable statutes <br />If retention of personal information is deemed necessary to operate in accordance to the provisions of relevant laws and regulations, including the Act on Consumer Protection in Electronic Commerce, then they will be held in possession by the Company for a certain period of time set by the relevant laws as noted below.<br />• Records related to contracts or withdrawal of subscription: <br />o Purpose of possession: Act on Consumer Protection in Electronic Commerce<br />o Possession period: 5 years<br />• Records related to payment and supply of goods <br />o Purpose of possession: Act on Consumer Protection in Electronic Commerce<br />o Possession period: 5 years<br />• Records related to consumer complaints or dispute settlement <br />o Purpose of possession: Act on Consumer Protection in Electronic Commerce <br />o Possession period: 3 years<br />• Records of log <br />o Purpose of possession: Protection of Communications Secrets Act <br />o Possession period: 3 months</p><p>■ Procedures and methods of discarding personal information<br />As a general rule, once the personal data has fulfilled the purposes for which they were collected, they are immediately discarded. The procedure and method to discard is detailed below. <br />• Discarding procedure<br />Following the cause for information protection according to the internal policies or related statutes, once the personal data has fulfilled the purposes they will be transferred to a separate database(DB) (or filed separately in a folder if in paper form), then it will be discarded after a certain period of time. Personal information that is transferred to a separate DB will not be used for any other purposes except in the case of the law. <br />• Discarding method<br />Use technical method to stop reproduction of personal information saved in electronic form. <br />■ Disclosing personal information<br />As a general rule, the Company shall not disclose user’s personal information to any external party except for the cases below. <br />• Prior consent from user <br />• Following the legislation rule or when law enforcement agencies require such information for investigative purposes during the process as prescribed by the law. </p><p>■ Consignment of collected personal information <br />For the provision of services, the Company consigns collected personal information to specialized companies detailed below. <br />• Consignee: [Name of delivery company]<br />• Details of consignment: [Delivery company’s consignment details]</p><p>• Consignee: [Name of payment gateway provider]<br />• Details of consignment: [Payment gateway provider’s consignment details]<br /> <br />■ The rights of users and legal representatives and methods of exercising those rights <br />• The user may view or edit his/her personal information and request to terminate membership at any time. <br />• To view or edit a user’s personal information, click on ‘Edit Personal Information’ (or ‘Edit Member Information’) and to cancel subscription (terminate membership) click on ‘Terminate Membership.’ Upon clicking, you’ll be directed to an identification process before you can directly access, correct, or cancel membership. <br />• User may contact the chief privacy officer by letter, telephone or email, and necessary actions will be taken. <br />• Should a user request corrections on errors of personal information, the Company shall not use or provide any personal information until a correction is made. In addition, if the wrong personal information has already been provided to a third party, the Company shall immediately notify them so that a proper correction can be made. <br />• If personal information is canceled or deleted upon request of user, the Company will comply with the terms specified under “Period of possession and utilization of personal information,” and prohibit disclosure or use for any other purposes. </p><p>■ Install, manage and deny operation of device for automatic collection of personal information<br />The Company uses ‘cookies’ that frequently save and retrieve your information. A cookie is a very small text file that the server, used to operate the Company’s website, sends to your browser. The file is saved in the hard disk of your computer. <br />The Company uses cookies for the following purposes: <br />• Use and purpose of cookies <br />o To analyze the frequencies of a member and non-member’s visit, understand user’s preferences and interests and track user’s footprints, and carry out target marketing and provide customized service by checking level of participation in various events and number of visits. <br />o You have the right of choice in regards to the installation of cookies. Accordingly, you may allow all cookies by modifying your cookie settings, go through a confirmation process whenever a cookie is saved, or refuse to have all cookies saved. <br />• Settings to reject establishment of cookies <br />o To reject establishment of cookies, select options on your web browser and change your settings to allow all cookies, go through a verification process before saving cookies, or reject to save all cookies.<br />o Example (For Internet Explorer)<br />- Go to ‘Tools’ located on the top of Web Browser > Internet Options > Privacy <br />o However, there may be certain difficulties in using the services if you reject the installment of cookies. </p><p>■ Civil services with respect to personal information <br />To protect your personal information and deal with complaints related to personal information, the Company has appointed the following department and chief privacy officer. <br />• Principal Privacy Officer <br />Name: Eunsung Kim<br />Department: Marketing<br />E-mail: assist@goalstudio.com</p><p><br></p><p>• Chief Privacy Officer <br />Name: Dongmin Jung<br />Department: Marketing<br />E-mail: <span style="font-size: 9pt;">assist@goalstudio.com</span></p><p>• You may report all complaints related to privacy protection, in using the Company’s service, to the chief privacy officer or the department in charge. <br />• The Company shall provide prompt and sufficient answers to your report. <br />• For further consultation or report on other privacy infringements, contact the following the following agencies. <br />o Privacy Rights Violation Complaint Center (privacy.kisa.or.kr / 118)<br />o Cybercrime Investigation Department, Supreme Prosecutor’s Office (<a href="http://www.spo.go.kr">www.spo.go.kr</a> / 02-3480-2000)<br />o Cyber Bureau, National Police Agency (<a href="http://www.ctrc.go.kr/">www.ctrc.go.kr/</a> 182)</p><p>■ Duty to notify<br />The Company shall notify users of any changes to this privacy policy through the website (or through individual notifications). <br />• This privacy policy will be enforced starting 2019Y, 03M 11D. </p> </div> </div> </div> <div class="ec-base-button displaynone"> <span class="gRight"> <a href="" class="btnLink" target="_blank"></a> </span> </div> </div> </div> </div> </section><!-- Footer ============================================= --><footer id="footer"><div class="container-fluid clearfix"> <div class="row justify-content-between col-padding nobottompadding"> <div><img src="/web/upload/brushlab/2024/logotype.svg" style="height: 32px;"/></div> <div class="line topmargin-sm bottommargin-sm"></div> <!-- <div class="col-6 nopadding"> <h2 class="font-white">STAY IN TOUCH FOR NEW RELEASES<br/> AND PROMOTION UPDATES</h2> </div> --> <div class="col-4 nopadding"> <!--<iframe src="http://brushlab.net/wagti/email.html" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" width="100%" height="120px" hspace="0" vspace="0" style="vertical-align: top;"></iframe>--> </div> <!-- <div class="line bottommargin-sm" style="margin-top:16px;"></div> --> </div> </div> <!-- Copyrights ============================================= --> <div id="copyrights"> <div class="container-fluid nopadding clearfix"> <div class="col_half col-padding notoppadding" style="color: #7e7e7e; font-size:12px; text-align: left;"> Company:(주)왁티 | Owner: Junghoon Kang | 7, Apgujeong-ro 10-gil, Gangnam-gu, Seoul, Korea, 06028<br/> Company Registration No.: 240-88-00299 | Telecommunication services registration No.: 2016-서울강남-03076<br/> Email: assist@goalstudio.com | Tel: 1660-1215<br/><br/><a href="https://www.ftc.go.kr/bizCommPop.do?wrkr_no=2408800299" target="_blank" style="color: #ffffff; font-size:12px;">Business License(사업자 정보 확인) </a> <!--div class="" style="color: #ffffff; font-size:12px;">The GOAL, GOAL POSTS and related trade marks are used under licence from Perform Media Sales Ltd</div--> <div class="clear"></div> <div class="pt-30 clearfix" style="margin-left:-15px;"> <a href="https://www.facebook.com/goalstudio.official" class="social-icon"> <i class="icon-facebook"></i> <i class="icon-facebook"></i> </a> <a href="https://www.instagram.com/goalstudio_official/" class="social-icon"> <i class="icon-instagram"></i> <i class="icon-instagram"></i> </a> <a href="https://www.youtube.com/channel/UCe5m37HU4UdYIUU7T7nZzDw?view_as=subscriber" class="social-icon"> <i class="icon-youtube"></i> <i class="icon-youtube"></i> </a> </div> </div> <div class="col_half col_last tright col-padding notoppadding"> <div class="copyright-links"><a href="/member/agreement.html">Terms and Policy</a> <a href="/member/privacy.html">Privacy Policy</a> <!--a href="#">Returns Privacy</a> </div--> <div class="clear"></div> </div> </div> </div><!-- #copyrights end --> <!-- #footer end --> <!-- Go To Top&Bottom ============================================= --> <div id="gotoTop" class="icon-angle-up"></div> <!-- Enliple Common Tracker v3.6 [공용] start --> <!-- <script type="text/javascript"> function mobRf() { var rf = new EN(); rf.setData("userid", "goalstore"); rf.setSSL(true); rf.sendRf(); } </script> --> <div class="criteo-onetag" data-version="1.3"> <script type="text/javascript" src="//static.criteo.net/js/ld/ld.js" async="true"></script> <script type="text/javascript"> var enableNpayTag = true; var partnerId = 63120; var listingModuleClass = "xans-product-listnormal"; var detailModuleClass = "xans-product-detail"; var basketModuleClass = "xans-order-basketpackage"; var salesModuleClass = "xans-order-result"; var pageType = getPageType(); if (pageType === "listing") { criteoEvent({ event: "viewList", item: getTop3ProductIds() }); } else if (pageType === "detail") { callProductEvents(); } else if (pageType === "basket") { callBasketEvents(); } else if (pageType === "sales") { callSalesEvents(); } else { criteoEvent({ event: "viewHome" }); } function callProductEvents() { if (typeof iProductNo !== "undefined") { criteoEvent({ event: "viewItem", item: iProductNo }); if (enableNpayTag) { criteoNpayEvent(pageType, iProductNo); } } else { setTimeout(callProductEvents, 100); } } function callSalesEvents() { if (typeof EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA !== "undefined") { var transactionId = EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA.order_id; var criteoProductData = []; EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA.order_product.forEach(function (productData) { criteoProductData.push({ id: productData.product_no, price: productData.product_price, quantity: productData.quantity }); }); criteoEvent({ event: "trackTransaction", id: transactionId, item: criteoProductData }); } else { setTimeout(callSalesEvents, 100); } } function callBasketEvents() { if (typeof aBasketProductData !== "undefined") { var criteoProductData = []; aBasketProductData.forEach(function (productData) { criteoProductData.push({ id: productData.product_no, price: productData.product_sum_price, quantity: productData.quantity }); }); criteoEvent({ event: "viewBasket", item: criteoProductData }); if (enableNpayTag) { criteoNpayEvent(pageType, criteoProductData); } } else { setTimeout(callBasketEvents, 100); } } function getProductId() { if (typeof iProductNo !== "undefined") { return iProductNo; } else { setTimeout(getProductId, 100); } } function getTop3ProductIds() { var productIds = []; var elements = document.querySelectorAll("." + listingModuleClass + " ul.prdList > li"); if (elements.length === 0) { elements = document.querySelectorAll("." + listingModuleClass + " div.prd-list a[name*='anchorBoxName']:first-child"); } elements.forEach(function (element) { var elementId = element.name; if (elementId !== "") { var productId = elementId.split("_")[1]; productIds.push(productId); } }); return productIds.slice(0, 3); } function getPageType() { var elements = document.getElementsByClassName(listingModuleClass); if (elements.length > 0) return "listing"; elements = document.getElementsByClassName(detailModuleClass); if (elements.length > 0) return "detail"; elements = document.getElementsByClassName(basketModuleClass); if (elements.length > 0) return "basket"; elements = document.getElementsByClassName(salesModuleClass); if (elements.length > 0) return "sales"; return "homepage"; } function addEvent(className, evType, fn) { document.addEventListener(evType, function (e) { if (e.target && e.target.classList.contains(className)) { fn(); } }); } function arraysMatch(arr1, arr2) { if (arr1.length !== arr2.length) return false; for (var i = 0; i < arr1.length; i++) { if (arr1[i] !== arr2[i]) return false; } return true; }; function criteoNpayEvent(pageType, obj) { window.criteo_q = window.criteo_q || []; window.criteo_q.push({ requiresDOM: "non-blocking", cb: function () { addEvent("npay_btn_pay", "click", function () { if (typeof (Storage) !== "undefined") { var lastNpayTransaction = localStorage.lastNpayTransaction; var itemIdArray = []; if (pageType === "detail") { itemIdArray.push(obj); } else if (pageType === "basket") { for (item in obj) itemIdArray.push(obj[item].id); itemIdArray.sort(); } if (lastNpayTransaction !== undefined) { var lastNpayTimestamp = lastNpayTransaction.split("||")[0]; var lastNpayProductsArray = lastNpayTransaction.split("||")[1].split(",").sort(); if ((Date.now() - lastNpayTimestamp) / 1000 / 60 < 10 && arraysMatch(itemIdArray, lastNpayProductsArray)) return; } var deviceType = /iPad/.test(navigator.userAgent) ? "t" : /Mobile|iP(hone|od)|Android|BlackBerry|IEMobile|Silk/.test(navigator.userAgent) ? "m" : "d"; if (pageType === "detail") { criteo_q.push( { event: "setAccount", account: partnerId }, { event: "setEmail", email: "" }, { event: "setSiteType", type: deviceType }, { event: "trackTransaction", id: "npay" + Math.floor(Math.random() * 99999999999), item: [{ id: obj, price: iOptionPrice, quantity: checkQuantity() }] }, { event: "setResponseType", type: "gif" } ); } else if (pageType === "basket") { criteo_q.push( { event: "setAccount", account: partnerId }, { event: "setEmail", email: "" }, { event: "setSiteType", type: deviceType }, { event: "trackTransaction", id: "npay" + Math.floor(Math.random() * 99999999999), item: obj }, { event: "setResponseType", type: "gif" } ); } localStorage.lastNpayTransaction = Date.now() + "||" + itemIdArray.join(); } }); } }); } function criteoEvent(eventObj) { window.criteo_q = window.criteo_q || []; var deviceType = /iPad/.test(navigator.userAgent) ? "t" : /Mobile|iP(hone|od)|Android|BlackBerry|IEMobile|Silk/.test(navigator.userAgent) ? "m" : "d"; window.criteo_q.push( { event: "setAccount", account: partnerId }, { event: "setEmail", email: "" }, { event: "setSiteType", type: deviceType }, eventObj); } </script> </div> </div> <!-- Do not delete. Required code for payment. --> <div id="progressPaybar" style="display:none;"> <div id="progressPaybarBackground" class="layerProgress"></div> <div id="progressPaybarView"> <div class="box"> <p class="graph"> <span><img src="//img.echosting.cafe24.com/skin/base_en_US/layout/txt_progress.gif" alt="Payment is being processed."/></span> <span><img src="//img.echosting.cafe24.com/skin/base/layout/img_loading.gif" alt=""/></span> </p> <p class="txt"> This window will automatically close when payment is processed.<br/> Do not close this window until processing completes. </p> </div> </div> </div> <!-- // Do not delete. Required code for payment. --> <div class="xans-element- xans-layout xans-layout-multishopshipping "><div class="dimmed"></div> <div class="worldshipLayer ec-base-layer"> <div class="header"> <h3>WORLD SHIPPING</h3> </div> <div class="content"> <p class="desc">PLEASE SELECT THE DESTINATION COUNTRY AND LANGUAGE :</p> <div class="select"> <select class="xans-element- xans-layout xans-layout-multishopshippingcountrylist"><option value="GH" class="xans-record-">SHIPPING TO : GHANA</option> <option value="GA" class="xans-record-">SHIPPING TO : GABON</option> <option value="GY" class="xans-record-">SHIPPING TO : GUYANA</option> <option value="GM" class="xans-record-">SHIPPING TO : GAMBIA</option> <option value="GT" class="xans-record-">SHIPPING TO : GUATEMALA</option> <option value="GD" class="xans-record-">SHIPPING TO : GRENADA</option> <option value="GE" class="xans-record-">SHIPPING TO : GEORGIA</option> <option value="GR" class="xans-record-">SHIPPING TO : GREECE</option> <option value="GN" class="xans-record-">SHIPPING TO : GUINEA</option> <option value="GW" class="xans-record-">SHIPPING TO : GUINEA-BISSAU</option> <option value="NA" class="xans-record-">SHIPPING TO : NAMIBIA</option> <option value="NG" class="xans-record-">SHIPPING TO : NIGERIA</option> <option value="ZA" class="xans-record-">SHIPPING TO : SOUTH AFRICA</option> <option value="AN" class="xans-record-">SHIPPING TO : NETHERLANDS(ANTILLES)</option> <option value="NL" class="xans-record-">SHIPPING TO : NETHERLANDS</option> <option value="AW" class="xans-record-">SHIPPING TO : ARUBA</option> <option value="NP" class="xans-record-">SHIPPING TO : NEPAL</option> <option value="NO" class="xans-record-">SHIPPING TO : NORWAY</option> <option value="NZ" class="xans-record-">SHIPPING TO : NEW ZEALAND</option> <option value="NE" class="xans-record-">SHIPPING TO : NIGER</option> <option value="NI" class="xans-record-">SHIPPING TO : NICARAGUA</option> <option value="KR" class="xans-record-">SHIPPING TO : KOREA (REP OF,)</option> <option value="DK" class="xans-record-">SHIPPING TO : DENMARK</option> <option value="GL" class="xans-record-">SHIPPING TO : GREENLAND</option> <option value="FO" class="xans-record-">SHIPPING TO : FAROE ISLANDS</option> <option value="DO" class="xans-record-">SHIPPING TO : DOMINICAN REPUBLIC</option> <option value="DM" class="xans-record-">SHIPPING TO : DOMINICA</option> <option value="DE" class="xans-record-">SHIPPING TO : GERMANY</option> <option value="TL" class="xans-record-">SHIPPING TO : TIMOR-LESTE</option> <option value="LR" class="xans-record-">SHIPPING TO : LIBERIA</option> <option value="LV" class="xans-record-">SHIPPING TO : LATVIA</option> <option value="LB" class="xans-record-">SHIPPING TO : LEBANON</option> <option value="LS" class="xans-record-">SHIPPING TO : LESOTHO</option> <option value="LU" class="xans-record-">SHIPPING TO : LUXEMBOURG</option> <option value="MY" class="xans-record-">SHIPPING TO : MALAYSIA</option> <option value="MX" class="xans-record-">SHIPPING TO : MEXICO</option> <option value="MC" class="xans-record-">SHIPPING TO : MONACO</option> <option value="MU" class="xans-record-">SHIPPING TO : MAURITIUS</option> <option value="MR" class="xans-record-">SHIPPING TO : MAURITANIA</option> <option value="MZ" class="xans-record-">SHIPPING TO : MOZAMBIQUE</option> <option value="ME" class="xans-record-">SHIPPING TO : MONTENEGRO</option> <option value="MD" class="xans-record-">SHIPPING TO : MOLDOVA, REPUBLIC OF</option> <option value="MV" class="xans-record-">SHIPPING TO : MALDIVES</option> <option value="MT" class="xans-record-">SHIPPING TO : MALTA</option> <option value="US" class="xans-record-">SHIPPING TO : U.S.A</option> <option value="GU" class="xans-record-">SHIPPING TO : GUAM</option> <option value="MH" class="xans-record-">SHIPPING TO : MARSHALL ISLANDS</option> <option value="VI" class="xans-record-">SHIPPING TO : VIRGIN ISLANDS U.S.</option> <option value="WS" class="xans-record-">SHIPPING TO : SAMOA</option> <option value="AS" class="xans-record-">SHIPPING TO : AMERICAN SAMOA</option> <option value="MP" class="xans-record-">SHIPPING TO : NORTHERN MARIANA ISLANDS</option> <option value="MM" class="xans-record-">SHIPPING TO : MYANMAR</option> <option value="FM" class="xans-record-">SHIPPING TO : MICRONESIA</option> <option value="VU" class="xans-record-">SHIPPING TO : VANUATU</option> <option value="BH" class="xans-record-">SHIPPING TO : BAHRAIN</option> <option value="BS" class="xans-record-">SHIPPING TO : BAHAMAS</option> <option value="BD" class="xans-record-">SHIPPING TO : BANGLADESH</option> <option value="VE" class="xans-record-">SHIPPING TO : VENEZUELA</option> <option value="VN" class="xans-record-">SHIPPING TO : VIET NAM</option> <option value="BE" class="xans-record-">SHIPPING TO : BELGIUM</option> <option value="BY" class="xans-record-">SHIPPING TO : BELARUS</option> <option value="BZ" class="xans-record-">SHIPPING TO : BELIZE</option> <option value="BA" class="xans-record-">SHIPPING TO : Bosnia and Herzegovina</option> <option value="BO" class="xans-record-">SHIPPING TO : BOLIVIA</option> <option value="BF" class="xans-record-">SHIPPING TO : BURKINA FASO</option> <option value="BT" class="xans-record-">SHIPPING TO : BHUTAN</option> <option value="BG" class="xans-record-">SHIPPING TO : BULGARIA(REP)</option> <option value="BR" class="xans-record-">SHIPPING TO : BRAZIL</option> <option value="BN" class="xans-record-">SHIPPING TO : BRUNEI DARUSSALAM</option> <option value="BI" class="xans-record-">SHIPPING TO : BURUNDI</option> <option value="CY" class="xans-record-">SHIPPING TO : CYPRUS</option> <option value="SM" class="xans-record-">SHIPPING TO : SAN MARINO</option> <option value="SN" class="xans-record-">SHIPPING TO : SENEGAL</option> <option value="RS" class="xans-record-">SHIPPING TO : SERBIA/KOSOVO</option> <option value="SC" class="xans-record-">SHIPPING TO : SEYCHELLES</option> <option value="LC" class="xans-record-">SHIPPING TO : SAINT LUCIA</option> <option value="KN" class="xans-record-">SHIPPING TO : SAINT KITTS AND NEVIS</option> <option value="SB" class="xans-record-">SHIPPING TO : SOLOMON ISLANDS</option> <option value="SR" class="xans-record-">SHIPPING TO : SURINAME</option> <option value="LK" class="xans-record-">SHIPPING TO : SRI LANKA</option> <option value="SZ" class="xans-record-">SHIPPING TO : SWAZILAND</option> <option value="SE" class="xans-record-">SHIPPING TO : SWEDEN</option> <option value="CH" class="xans-record-">SHIPPING TO : SWITZERLAND</option> <option value="ES" class="xans-record-">SHIPPING TO : SPAIN</option> <option value="SK" class="xans-record-">SHIPPING TO : SLOVAKIA</option> <option value="SI" class="xans-record-">SHIPPING TO : SLOVENIA</option> <option value="SL" class="xans-record-">SHIPPING TO : SIERRA LEONE</option> <option value="SG" selected="selected" class="xans-record-">SHIPPING TO : SINGAPORE</option> <option value="AE" class="xans-record-">SHIPPING TO : UNITED ARAB EMIRATES</option> <option value="AM" class="xans-record-">SHIPPING TO : ARMENIA</option> <option value="AR" class="xans-record-">SHIPPING TO : ARGENTINA</option> <option value="IS" class="xans-record-">SHIPPING TO : ICELAND</option> <option value="HT" class="xans-record-">SHIPPING TO : HAITI</option> <option value="IE" class="xans-record-">SHIPPING TO : IRELAND</option> <option value="AZ" class="xans-record-">SHIPPING TO : AZERBAIJAN</option> <option value="AL" class="xans-record-">SHIPPING TO : ALBANIA</option> <option value="DZ" class="xans-record-">SHIPPING TO : ALGERIA</option> <option value="ER" class="xans-record-">SHIPPING TO : ERITREA</option> <option value="EE" class="xans-record-">SHIPPING TO : ESTONIA</option> <option value="SV" class="xans-record-">SHIPPING TO : EL SALVADOR</option> <option value="GB" class="xans-record-">SHIPPING TO : UNITED KINGDOM</option> <option value="MS" class="xans-record-">SHIPPING TO : MONTSERRAT</option> <option value="BM" class="xans-record-">SHIPPING TO : BERMUDA</option> <option value="VG" class="xans-record-">SHIPPING TO : VIRGIN ISLANDS BRITISH</option> <option value="AI" class="xans-record-">SHIPPING TO : ANGUILLA</option> <option value="GI" class="xans-record-">SHIPPING TO : GIBRALTAR</option> <option value="KY" class="xans-record-">SHIPPING TO : CAYMAN ISLANDS</option> <option value="TC" class="xans-record-">SHIPPING TO : TURKS AND CAICOS ISLANDS</option> <option value="YE" class="xans-record-">SHIPPING TO : YEMEN</option> <option value="OM" class="xans-record-">SHIPPING TO : OMAN</option> <option value="NF" class="xans-record-">SHIPPING TO : NORFOLK ISLAND</option> <option value="AU" class="xans-record-">SHIPPING TO : AUSTRALIA</option> <option value="AT" class="xans-record-">SHIPPING TO : AUSTRIA</option> <option value="HN" class="xans-record-">SHIPPING TO : HONDURAS</option> <option value="JO" class="xans-record-">SHIPPING TO : JORDAN</option> <option value="UZ" class="xans-record-">SHIPPING TO : UZBEKISTAN</option> <option value="UA" class="xans-record-">SHIPPING TO : UKRAINE</option> <option value="ET" class="xans-record-">SHIPPING TO : ETHIOPIA</option> <option value="IL" class="xans-record-">SHIPPING TO : ISRAEL</option> <option value="EG" class="xans-record-">SHIPPING TO : EGYPT</option> <option value="IT" class="xans-record-">SHIPPING TO : ITALY</option> <option value="IN" class="xans-record-">SHIPPING TO : INDIA</option> <option value="ID" class="xans-record-">SHIPPING TO : INDONESIA</option> <option value="JP" class="xans-record-">SHIPPING TO : JAPAN</option> <option value="JM" class="xans-record-">SHIPPING TO : JAMAICA</option> <option value="ZM" class="xans-record-">SHIPPING TO : ZAMBIA</option> <option value="CF" class="xans-record-">SHIPPING TO : CENTRAL AFRICAN REPUBLIC</option> <option value="MO" class="xans-record-">SHIPPING TO : MACAU</option> <option value="DJ" class="xans-record-">SHIPPING TO : DJIBOUTI</option> <option value="ZW" class="xans-record-">SHIPPING TO : ZIMBABWE</option> <option value="CZ" class="xans-record-">SHIPPING TO : CZECH REP</option> <option value="CL" class="xans-record-">SHIPPING TO : CHILE</option> <option value="CM" class="xans-record-">SHIPPING TO : CAMEROON</option> <option value="CV" class="xans-record-">SHIPPING TO : CAPE VERDE</option> <option value="KZ" class="xans-record-">SHIPPING TO : KAZAKHSTAN</option> <option value="QA" class="xans-record-">SHIPPING TO : QATAR</option> <option value="KH" class="xans-record-">SHIPPING TO : CAMBODIA</option> <option value="CA" class="xans-record-">SHIPPING TO : CANADA</option> <option value="KE" class="xans-record-">SHIPPING TO : KENYA</option> <option value="CR" class="xans-record-">SHIPPING TO : COSTA RICA</option> <option value="CI" class="xans-record-">SHIPPING TO : COTE D IVOIRE</option> <option value="CO" class="xans-record-">SHIPPING TO : COLOMBIA</option> <option value="CG" class="xans-record-">SHIPPING TO : CONGO</option> <option value="CU" class="xans-record-">SHIPPING TO : CUBA</option> <option value="KW" class="xans-record-">SHIPPING TO : KUWAIT</option> <option value="HR" class="xans-record-">SHIPPING TO : CROATIA</option> <option value="KG" class="xans-record-">SHIPPING TO : KYRGYZSTAN</option> <option value="KI" class="xans-record-">SHIPPING TO : KIRIBATI</option> <option value="TH" class="xans-record-">SHIPPING TO : THAILAND</option> <option value="TW" class="xans-record-">SHIPPING TO : TAIWAN</option> <option value="TJ" class="xans-record-">SHIPPING TO : TAJIKISTAN</option> <option value="TZ" class="xans-record-">SHIPPING TO : TANZANIA(UNITED REP)</option> <option value="TG" class="xans-record-">SHIPPING TO : TOGO</option> <option value="TO" class="xans-record-">SHIPPING TO : TONGA</option> <option value="TV" class="xans-record-">SHIPPING TO : TUVALU</option> <option value="TN" class="xans-record-">SHIPPING TO : TUNISIA</option> <option value="TT" class="xans-record-">SHIPPING TO : TRINIDAD AND TOBAGO</option> <option value="PA" class="xans-record-">SHIPPING TO : PANAMA(REP)</option> <option value="PY" class="xans-record-">SHIPPING TO : PARAGUAY</option> <option value="PK" class="xans-record-">SHIPPING TO : PAKISTAN</option> <option value="PG" class="xans-record-">SHIPPING TO : PAPUA NEW GUINEA</option> <option value="PE" class="xans-record-">SHIPPING TO : PERU</option> <option value="HU" class="xans-record-">SHIPPING TO : HUNGARY(REP)</option> <option value="PH" class="xans-record-">SHIPPING TO : PHILIPPINES</option> <option value="FI" class="xans-record-">SHIPPING TO : FINLAND</option> <option value="FJ" class="xans-record-">SHIPPING TO : FIJI</option> <option value="PF" class="xans-record-">SHIPPING TO : FRENCH POLYNESIA</option> <option value="RE" class="xans-record-">SHIPPING TO : REUNION</option> <option value="NC" class="xans-record-">SHIPPING TO : NEW CALEDONIA</option> <option value="GF" class="xans-record-">SHIPPING TO : FRENCH GUIANA</option> <option value="GP" class="xans-record-">SHIPPING TO : GUADELOUPE</option> <option value="FR" class="xans-record-">SHIPPING TO : FRANCE</option> <option value="PL" class="xans-record-">SHIPPING TO : POLAND(REP)</option> <option value="PT" class="xans-record-">SHIPPING TO : PORTUGAL</option> <option value="CN" class="xans-record-">SHIPPING TO : CHINA(PEOPLE'S REP)</option> <option value="HK" class="xans-record-">SHIPPING TO : HONG KONG</option> </select> </div> <div class="select"> <select class="xans-element- xans-layout xans-layout-multishopshippinglanguagelist"><option value="goalstudio.com" class="xans-record-">LANGUAGE : 한국어</option> <option value="en.goalstudio.com" selected="selected" class="xans-record-">LANGUAGE : English</option> <option value="cn.goalstudio.com" class="xans-record-">LANGUAGE : 中文</option> <option value="goalstudio.cafe24.com/shop8" class="xans-record-">LANGUAGE : English</option> </select> </div> </div> <div class="ec-base-button"> <a href="#none"><img src="//img.echosting.cafe24.com/skin/base_ko_KR/link/btn_go.gif" alt="GO"/></a> </div> <a href="#none" class="close"><img src="//img.echosting.cafe24.com/skin/base/common/btn_close.gif" width="13" height="13" alt="close"/></a> </div> </div> <script type="text/javascript" src="/web/upload/brushlab/js/jquery.js"></script> <script src="/web/upload/brushlab/js/plugins.js"></script> <script src="/web/upload/brushlab/js/functions.js"></script> <script> $( document ).ready(function() { $('input[name="order_password"]').val('1234') $('input[name="order_password_confirm"]').val('1234') }); </script> </footer></div><span itemscope="" itemtype="https://schema.org/Organization"> <link itemprop="url" href="https://en.goalstudio.com"> </span> <script type="text/javascript" src="/app/Eclog/js/cid.generate.js?vs=3260ad7ef0f55524eb46b16414cb560c&u=goalstudio.2"></script> <script type="text/javascript" src="/ind-script/i18n.php?lang=en_US&domain=front&v=2411201348" charset="utf-8"></script> <script src="/ind-script/optimizer.php?filename=zVjbbttGEH23-drvYN0WQV9tuW6D2IjgOMjzcDmkxlzubPYimfn6DCkljeqQ4sUGCgEkRc45O7tz3U03XGN68ZtLCwc17thVqUPP0SlMH31KF3-a5NH_kg7JRbKgqvTxc0TXHG6_J2-SXyci8SmgM6D94UWimCvCpSzR6VlTSFAlhZkNNazYFJpUmEVxkfwhv1mDy9fA7j_rZh2Xgj-ybg4BA4lALVImpKjuuodPFDYPX64hQFKTmcCjKRMUPsjzaZS3jkwoRtCziq1aN-zqFZvgWGt0p3FrHf2ltVeO8nKEPjGQPi1VOO5W6syzFgSbs8D2TJPBswyMGaPXnkJxXbMZK_0ERqLRiGtbh2H8KB0uYG212OXnILA2veOMNKb3P-D3-g2sSg-u5jzKK78jO23AIhrVLmgrl0cJm7rXiccyDCghrpp-3EfPjxQavjSaIZ8EqmOAdtz3mUe37TNOD9iybgrSo10vxwKiDu0S-BpcuBrwulbow4bt0YA3Hc07qIDTqr2u6Qn1UJQM0Kw6L_k46CQ90GvMYjkxw1kdSxKP3oImyTrsvuW87y8SeQC_mLatIib3z-mFwbLx-HojbFBbfPV5bMDkz7LoSw4gcUBF83r8EjPhxZZJswJJJhWfjsJ_NZjq8PdYoEOjcBVde2_WjtTi9iYrqQP9P5qtXEq_8ZIL_VImBE-mXMpSY4C8bWT66wgYKI_ryA4zzeWkLP7NpKkX25_b54adhFeHf-eFtDwQlmryUjTjOqRNqLV0axQI_WnplWts4HfYTLIQ-Mao_XU2rsY6GyqcJ-DvXY5OmTCb4Ap8hWE5w4CzjeZYHxqmuSwrjlIVl8zlTpo5KOfP4xote5o__ifym1vyywgUxwVL4FDhAvh9B6-wkQSZL2R54AB6tWg2XXzMd0s0WNDS0LiFZoEOfzvI5zvkZQwsSZdURyMtwW5-bEi_T2u20c4P0OhFHXQS6FtaYphb2qLsdqu-retYz_iH2kOK5gV87MD0ANkknq20ldL5fd9-9Z50TNTjrey2FyWSjuxa-hbSb03B802ugWrINC7QyELYONZ4PqLrPeU4vbvqHrCdUZP2Nf1cureJ1vS7RHYAeigw_jr0lsdHDl1nL5-9cmTDRHS7b04v2x2DRdWd7hQwVMt_SnKUdKxdjTxXchwD3tCTSH4F&type=js&k=10ca46d309a5035507207ceab15e4723e6680955&t=1729056897" ></script><script src="/ind-script/optimizer_user.php?filename=rc6xDQIxDEDRAULLHK5gESbIOVbiOzsOOAaxPSchFgC6Xz19aKYEhCmcbg7VsviMwgYjFmFMbaqAF0qFnGsH37ifziD5aTFhyc4Iq7_jsPoRvgR3A03V-o-IWgmhz981GLd0Z3r8ldWQyd5sXBqPwb3u-gs&type=js&k=8682a03579861914dbe9b45f4b0a8d3318b5c2c4&t=1552364949&user=T" ></script> <script type="text/javascript"> var sIsChannelUi = 'F'; var sChRef = ''; var sUseShoppingpayPg = 'F'; var sOwnMallLanding = 'F'; var sShoppingPayCookie = ''; var sYtshopping = 'F'; if (sIsChannelUi === 'T') { sessionStorage.setItem('ch_ref', sChRef); } CAFE24.getChRefData = function() { if (sIsChannelUi === 'T') { return sessionStorage.getItem('ch_ref'); } } // 자사몰랜딩/유튜브랜딩 공용 CAFE24.checkChannelUI = function() { if ((sIsChannelUi === 'T' && sessionStorage.getItem('ch_ref') || (sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T')) || sYtshopping === 'T') { return true; } else { return false; } } // 자사몰랜딩 UI확인 CAFE24.isOwnMallLandingUI = function() { return sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T'; } CAFE24.attachShoppingpayParam = function(sUrl) { if (sUrl) { var sChRef = CAFE24.getChRefData(); if (sChRef) { var sSeparator = (sUrl.includes('?')) ? '&' : '?'; sUrl += sSeparator + 'ch_ref=' + sChRef; } else if (sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T') { var sSeparator = (sUrl.includes('?')) ? '&' : '?'; sUrl += sSeparator + 'co_servicetype=shoppingpay'; } } return sUrl; } CAFE24.attachChRef = function(sUrl) { if (sUrl) { var sChRef = CAFE24.getChRefData(); if (sChRef) { var sSeparator = (sUrl.includes('?')) ? '&' : '?'; sUrl += sSeparator + 'ch_ref=' + sChRef; } } return sUrl; } var sIsCheckout = 'F'; var sCheckoutToken = ''; if (sIsCheckout === 'T') { sessionStorage.setItem('checkoutToken', sCheckoutToken); } else { sessionStorage.removeItem('checkoutToken'); } CAFE24.getCheckoutToken = function() { if (sIsCheckout === 'T') { return sessionStorage.getItem('checkoutToken'); } } CAFE24.attachCheckoutParam = function(sUrl) { if (sUrl) { var sCheckoutToken = CAFE24.getCheckoutToken(); if (sCheckoutToken) { var sSeparator = (sUrl.includes('?')) ? '&' : '?'; sUrl += sSeparator + 'checkoutToken=' + sCheckoutToken; } } return sUrl; } CAFE24.MOBILE_WEB = false; var mobileWeb = CAFE24.MOBILE_WEB; try { var isUseLoginKeepingSubmit = false; // isSeqNoKeyExpiretime function isSeqNoKeyExpiretime(iExpiretime) { var sDate = new Date(); var iNow = Math.floor(sDate.getTime() / 1000); // 유효시간 확인 if (iExpiretime > iNow) { return false; } return true; } function isUseLoginKeeping() { // 디바이스 확인 if (EC_MOBILE_DEVICE === false) { return; } // 로그인 여부 var isLogin = document.cookie.match(/(?:^| |;)iscache=F/) ? true : false if (isLogin) { return; } var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info'); var iSeqnoExpiretime; var iSeqNoKey; if (sLoginKeepingInfo == null) { iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime'); iSeqNoKey = localStorage.getItem('seq_no_key'); // 유효시간, key 값 확인 if (iSeqnoExpiretime === null || iSeqNoKey === null) { return; } } else { var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo); iSeqNoKey = oLoginKeepingInfo.seq_no_key; iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime; if (isNaN(iSeqNoKey) === true || isNaN(iSeqnoExpiretime) === true) { return; } } if (isSeqNoKeyExpiretime(iSeqnoExpiretime) === false) { return; } useLoginKeepingSubmit(); } function findGetParamValue(paramKey) { var result = null, tmp = []; location.search.substr(1).split('&').forEach(function (item) { tmp = item.split('='); if (tmp[0] === paramKey) result = decodeURIComponent(tmp[1]); }); return result; } function useLoginKeepingSubmit() { var iSeqnoExpiretime; var iSeqNoKey; var sUseLoginKeepingIp; var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info'); if (sLoginKeepingInfo == null) { iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime'); iSeqNoKey = localStorage.getItem('seq_no_key'); } else { var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo); iSeqNoKey = oLoginKeepingInfo.seq_no_key; iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime; sUseLoginKeepingIp = oLoginKeepingInfo.use_login_keeping_ip; } var oForm = document.createElement('form'); oForm.method = 'post'; oForm.action = '/exec/front/member/LoginKeeping'; document.body.appendChild(oForm); var oSeqNoObj = document.createElement('input'); oSeqNoObj.name = 'seq_no_key'; oSeqNoObj.type = 'hidden'; oSeqNoObj.value = iSeqNoKey; oForm.appendChild(oSeqNoObj); oSeqNoObj = document.createElement('input'); oSeqNoObj.name = 'seq_no_key_expiretime'; oSeqNoObj.type = 'hidden'; oSeqNoObj.value = iSeqnoExpiretime; oForm.appendChild(oSeqNoObj); var returnUrl = findGetParamValue('returnUrl'); if (returnUrl == '' || returnUrl == null) { returnUrl = location.pathname + location.search; } oSeqNoObj = document.createElement('input'); oSeqNoObj.name = 'returnUrl'; oSeqNoObj.type = 'hidden'; oSeqNoObj.value = returnUrl; oForm.appendChild(oSeqNoObj); if (sUseLoginKeepingIp != undefined) { oSeqNoObj = document.createElement('input'); oSeqNoObj.name = 'use_login_keeping_ip'; oSeqNoObj.type = 'hidden'; oSeqNoObj.value = sUseLoginKeepingIp; oForm.appendChild(oSeqNoObj); } oForm.submit(); isUseLoginKeepingSubmit = true; } isUseLoginKeeping(); } catch(e) { } var EC_SHOP_MULTISHOP_SHIPPING = {"bMultishopShipping":false,"bMultishopShippingCountrySelection":false,"bMultishopShippingLanguageSelection":false}; var aLogData = {"log_server1":"eclog2-260.cafe24.com","log_server2":"elg-db-svcm-267.cafe24.com","mid":"goalstudio","stype":"e","domain":"","shop_no":2,"lang":"en_US","ver":2,"hash":"","ca":"cfa-js.cafe24.com\/cfa.js","etc":"","mobile_flag":"F"}; var sMileageName = 'Point($)'; var sMileageUnit = '[:PRICE:]P($)'; var sDepositName = 'Store Credits'; var sDepositUnit = '$'; CAFE24.SHOP_CURRENCY_INFO = {"2":{"aShopCurrencyInfo":{"currency_code":"USD","currency_no":"840","currency_symbol":"$","currency_name":"United States dollar","currency_desc":"$ \ub2ec\ub7ec (\ubbf8\uad6d)","decimal_place":2,"round_method_type":"R"},"aShopSubCurrencyInfo":null,"aBaseCurrencyInfo":{"currency_code":"KRW","currency_no":"410","currency_symbol":"\uffe6","currency_name":"South Korean won","currency_desc":"\uffe6 \uc6d0 (\ud55c\uad6d)","decimal_place":0,"round_method_type":"F"},"fExchangeRate":1122.2,"fExchangeSubRate":null,"aFrontCurrencyFormat":{"head":"$","tail":""},"aFrontSubCurrencyFormat":{"head":"","tail":""}}}; var SHOP_CURRENCY_INFO = CAFE24.SHOP_CURRENCY_INFO; var EC_ASYNC_LIVELINKON_ID = ''; CAFE24.APPSCRIPT_ASSIGN_DATA = CAFE24.APPSCRIPT_ASSIGN_DATA || [{'src':'https://calendar-app.cafe24.com/openapi/inject.js?vs=20240926125433.1&client_id=A8RQp67UIt9nBlqvThz2jC'}]; CAFE24.APPSCRIPT_SDK_DATA = CAFE24.APPSCRIPT_SDK_DATA || ['application','category','collection','community','order','product','store','customer','supply','promotion','shipping','design','notification','personal','privacy','salesreport','mileage']; var EC_APPSCRIPT_ASSIGN_DATA = CAFE24.getDeprecatedNamespace('EC_APPSCRIPT_ASSIGN_DATA'); var EC_APPSCRIPT_SDK_DATA = CAFE24.getDeprecatedNamespace('EC_APPSCRIPT_SDK_DATA'); </script></body></html><script type="text/javascript" src="/web/upload/brushlab/js/jquery.js"></script><script type="text/javascript">var brushlab$= jQuery.noConflict();</script><script> brushlab$(document).ready(function(){ //마이페이지 //URL 체크 마이페이지용 var urlChk = brushlab$(location).attr('href'); console.log(urlChk.split('/').slice(3)[1]); var value = urlChk.split('/').slice(3)[1]; switch(value) { case 'index.html' : brushlab$('.mypage-0').addClass('select'); break; case 'order' : brushlab$('.mypage-1').addClass('select'); break; case 'consult' : brushlab$('.mypage-2').addClass('select'); break; case 'board_list.html' : brushlab$('.mypage-3').addClass('select'); break; case 'mileage' : brushlab$('.mypage-4').addClass('select'); break; case 'coupon' : brushlab$('.mypage-5').addClass('select'); break; case 'addr' : brushlab$('.mypage-6').addClass('select'); break; case 'member' : brushlab$('.mypage-7').addClass('select'); break; }; }); </script>