(typeof($NC)!="object")?$NC={}:{}; $NC.$blacklist.data={ '20121210133654':{ 'title':'', 'api':'', 'target':'', 'reg':'showcase', 'reg_flg':'', 'date':'20121210133654' }, '20131209141026':{ 'title':'android2.2以下', 'api':'', 'target':'', 'reg':'(Android 2\\.[0-2]|Android 1\\.[0-9])', 'reg_flg':'', 'date':'20131209141026' } };if(typeof($NC)=='undefined'){$NC={}} //-------------------------------------------------- // // 更新日:2011.4.25 // version:1.000.000 /* $NC.$.pos(element , target) 概要:対象項目の座標を取得 [ e:element , t:target(特定項目内での座標取得も可※未記入OK) ] $NC.$.size(element) 概要:対象項目のサイズを取得 [ e:element ] $NC.$.id(id) 概要:IDの取得(getElementById()) [ id:ID値 ] $NC.$.remove(element or ID) 概要:対象のID値、または対象項目を削除する [ element(or id):文字列の場合はID値とする。項目の指定も可 ] $NC.$.tag(tag , element) 概要:DOM内のタグ一覧を取得(getElementsByTagName()) [ tag:DIV等 e:基準となる項目※未記入可 ] $NC.$.className(word , element) 概要:特定のclass名を持つ項目一覧を取得(getElementsByClassName) [ word:対象文字列※正規表現可 element:※未記入可 ] $NC.$.create(tag,attribute) 概要:タグ項目を作成する [ tag:作成するタグ種別 , attribute:属性※連想配列にて記述 ] $NC.$.query(url) 概要:表示しているページのブラウザアドレスのURLクエリを連想配列で返します。 [ url:未記入可 ] $NC.$.domain(url) 概要:表示しているページのブラウザアドレスのドメイン(サブドメイン)を返します。 [ url:URL指定も可※未記入可 ] $NC.$.dir(url) 概要:表示しているページのブラウザアドレスのURLのアクセスファイルの値を返します。 [ url:URL指定も可※未記入可 ] $NC.$.document(element) 概要:document.bodyサイズ(スクロール域も含めた)または、対象項目のサイズ [ element:対象項目※未記入可 ] $NC.$.scroll(element) 概要:スクロール値の取得 [ element:対象項目※未記入可 ] $NC.$.browser() 概要:ブラウザの表示画面サイズ $NC.$.addEvent(target , mode , function) 概要:イベント情報の追記登録 [ target:window,document mode:load,mousedown※onを抜かす function:実行関数 ] $NC.$.mouse.x $NC.$.mouse.y 概要:マウスの座標が自動で格納される。 $NC.$.alpha(element , num(%)) 概要:対象項目の透明度を設定 [ element:対象項目 num:%] $NC.$.swf(wmode) 概要:SWFファイルに自動でwmodeを設定する [ wmode:transparent※未記入可 , opaque ] $NC.$.style(element , style) 概要:対象項目のCSS値を取得 [ element:対象項目 ] $NC.$.camelize(prop) 概要:style属性などの文字列整形を行う※例)「font-type」→「fontType」 [ prop:文字列 ] $NC.$.attribute $NC.$.attribute.focus(element) 概要:対象項目の属性をハイライト表示する [ element:対象項目 style:属性] $NC.$.unique 概要:対象項目の「ページ内DOM構造ユニークID」を出力する(エンコード) [ element:対象項目 ] $NC.$.link_kill 概要:ページ内のリンクを遷移しないようにする $NC.$.table_add 概要:Table要素に行要素を追加する 使用方法:[ table:table要素 html:HTML記述※tr含む] NC.$.eval_play 概要:文字列(関数名)から、実行を行う。※関数が存在しない場合は、未処理 使用方法:[ str:文字列関数名 ] $NC.$.select_add 概要:select項目に値を追加する。 使用方法:[ e , key , value ,title ] $NC.$.count_value 概要:文字列を指定文字数に丸めこむ 使用方法:[ val:文字列 n:文字数 ] //$NC.$.hash_copy // 概要:連想配列のコピー※多次元対応 // 使用方法:$HOGE = $NC.$.hash_copy("元データ(連想配列データ)"); */ //-------------------------------------------------- $NC.$={ //読み込み完了フラグ; load:'conplete', //element座標; pos:function(e , t){ if(typeof(t)=='undefined' || t==null){ t = document.body; } // else{ // alert(t.tagName); // } // var base = e; //座標算出; var pos={x:0,y:0}; if(typeof(e)=='undefined' || e==null){return pos;} /* //absolute; if(e.style.position.match(/absolute/i) && e.style.left && e.style.top){ pos.x = parseInt(e.style.left); pos.y = parseInt(e.style.top); } */ //通常座標; // else{ var flg=0; do{ if(e == t){break}//alert(e.tagName); pos.x += e.offsetLeft; pos.y += e.offsetTop; // if(e.style.position && e.style.position.match(/relative/i){break} // if(e.style.position=='absolute'){break} if(flg>10000){break} flg++; } while(e = e.offsetParent); // while(e = e.parentNode); /* //子階層依存※Aタグ且つ下に1つのみの子を持つ場合座標加算を行う; if(base.childNodes.length==1 && base.tagName=='A' && typeof(base.childNodes[0].tagName)!='undefined'){ pos.x = base.childNodes[0].offsetLeft; pos.y = base.childNodes[0].offsetTop; } */ // } return pos; }, //表示elementサイズ(指定がない場合はwindow(body)サイズ); size:function(e){ //対象element if(typeof(e)=='undefined'){ if (navigator.userAgent.match("MSIE")&&document.compatMode!='BackCompat'){ e = document.documentElement; } else{ // e = document.body; e = document.getElementsByTagName("body")[0]; } } //サイズ取得; var size={ x:e.offsetWidth, y:e.offsetHeight }; //子階層依存※下に1つのみの子を持つ場合サイズチェックを行う; if(e.childNodes.length==1 && e.tagName=='A'){ var chk ={ x:e.childNodes[0].offsetWidth, y:e.childNodes[0].offsetHeight }; if(chk.x > size.x){ size.x = chk.x; } if(chk.y > size.y){ size.y = chk.y; } } return size; }, //getElementById; id:function(id){ if(!id){return} return document.getElementById(id); }, //削除; remove:function(e){ if(typeof(e)=='string'){ e=$NC.$.id(e); } if(typeof(e)=='undefined' || e==null || !e){return} e.parentNode.removeChild(e); }, //getElementsByTagName; tag:function(t,elm){ if(!t){t="*"} var e = document; if(typeof(elm)!='undefined'){ e = elm; } return e.getElementsByTagName(t); }, //getElementsByClassName:classNameチェック※正規表現可能; className:function(w,e){ if(typeof(w)=='undefined'){return} if(typeof(e)=='undefined'){ e = document; } //検索対象一覧取得; var t = $NC.$.tag("*",e); var d=[]; //正規表現可能; if(typeof(w)=='function'){ //対象項目; for(var i=0;i= 100) {n = 100;} } e.style.filter = 'alpha(opacity='+n+')'; } //FireFox; else if (navigator.userAgent.indexOf("Firefox")!=-1){ if (n < 0){ if (n <= 0) {n = 0;} else if (n >= 1) {n = 1;} }else{n = n/100;} e.style.opacity = n; } //Opera & Safari; else if ((navigator.userAgent.indexOf("Opera")!=-1)||(navigator.userAgent.indexOf("Safari")!=-1)){ if (n < 0){ if (n <= 0) {n = 0;} else if (n >= 1) {n = 1;} }else{n = n/100;} e.style.opacity = n; } //Netscape; else if (navigator.userAgent.indexOf("Netscape")!=-1){ if (n < 0){ if (n <= 0) {n = 0;} else if (n >= 1) {n = 1;} }else{n = n/100;} e.style.MozOpacity = n; } return e; }, //sef-hack; swf:function(f){ // $NC.$.addEvent(window,"load",function(){ $NC.$proc.swf.set(f); // }); }, //style値を取得; style:function(e,s){ if(!s){return} //対象項目チェック; if(typeof(e)=='undefined' || e==null || !e){ e = document.body; } //属性チェック; var d=''; if(typeof(e.currentStyle)!='undefined'){ d = e.currentStyle[$NC.$.camelize(s)]; if(d=='medium'){ d = "0"; } } else if(typeof(document.defaultView)!='undefined'){ d = document.defaultView.getComputedStyle(e,'').getPropertyValue(s); } return d; }, style_width:function(e){ return e.offsetWidth + parseInt($NC.$.style(e,'margin-left'))+parseInt($NC.$.style(e,'margin-right')); }, style_height:function(e){ return e.offsetHeight + parseInt($NC.$.style(e,'margin-top'))+parseInt($NC.$.style(e,'margin-bottom')); }, //camelize,capitalize; camelize:function(s){ if(typeof(s)!='string'){return} return s.replace(/-([a-z])/g , function(m){return m.charAt(1).toUpperCase();}); }, //elementのDOM階層(対象elementの階層dom構造をユニーク値で返す); //element → id(途中でIDがあれば、そこで止まる); unique:function(e){ if(typeof(e)=='undefined' || e==null || !e){return} var dom = []; var f=0; do{ if(e.id && e == document.getElementById(e.id)){ dom[dom.length] = e.id; break; } else if(!e.parentNode){break} var num = 0; var cnt = 0; if(e.parentNode.childNodes.length){ for(var i=0;i10000){break} } while (e = e.parentNode); //rsort; var dom2 = []; for(var i=dom.length-1;i>=0;i--){ dom2[dom2.length] = dom[i]; } return dom2.join("."); }, //element → id(document.bodyまでのフルパス); unique_full:function(e){ if(typeof(e)=='undefined' || e==null || !e){return} var dom = []; var f=0; do{ /* if(e.id){ dom[dom.length] = e.id; break; } */ // else{ if(!e.parentNode){break} var num = 0; var cnt = 0; if(e.parentNode.childNodes.length){ for(var i=0;i10000){break} } while (e = e.parentNode); //rsort; var dom2 = []; for(var i=dom.length-1;i>=0;i--){ dom2[dom2.length] = dom[i]; } return dom2.join("."); }, //id → element; unique_decode0:function(id){ if(!id){return;} //単一IDの場合; if($NC.$.id(id)!=null){ return $NC.$.id(id); } //element抽出処理 var elm= document.body; var d1 = id.split("."); var flg=0; for(var i=0;i"; var tr = d.getElementsByTagName("tbody"); for(var i=0;i").join("-"); val = val.split("%3e").join("-"); val = val.split("%3E").join("-"); return val; }, value:{ encode:function(val){ val = val.split("%").join("%per%"); val = val.split("\r").join("%r%"); val = val.split("\n").join("%n%"); val = val.split(" ").join("%sp%"); val = val.split("'").join("%qt%"); val = val.split('"').join("%dqt%"); val = val.split("
").join("%br%"); return val; }, decode:function(val){ var ptns=[]; for(var i in this.decode_replace){ ptns.push(i); } var ptn = RegExp(ptns.join("|"),"g"); var chk = val.match(ptn); if(chk){ for(var i=0;i", '%per%':"%" } }, //JSファイル読み込み完了チェック※特定の関数が読み込まれているかどうかで判別; function_read_check:function(fn,next){ if(!fn){return} if($NC.$proc.function_read_check.count > $NC.$proc.function_read_check.max){return} if(typeof(eval(fn))=='undefined'){ //停止フラグカウント; $NC.$proc.function_read_check.count += $NC.$proc.function_read_check.add; //再チェック; setTimeout(function(){$NC.$.function_read_check(fn,next)},$NC.$proc.function_read_check.add); } else if(next){ eval(next); } }, function_read_check2:function(fn,next){ if(!fn){return} if($NC.$proc.function_read_check.count > $NC.$proc.function_read_check.max){return} if(fn.indexOf(".")!=-1){ var flg=0; var fns = fn.split("."); for(var i=0;i b2[key] ? 1 : -1; } ) }, */ $:'' }; //内部処理一覧; $NC.$proc={ function_read_check:{ add:10, count:0, max:5000 }, mouse:function(e){ //IE以外のブラウザ; if(e){ $NC.$.mouse.x = e.clientX; $NC.$.mouse.y = e.clientY; } //IE処理; else{ $NC.$.mouse.x = event.x; $NC.$.mouse.y = event.y; } }, //swf-hack(wmode=transparent); swf:{ set:function(wmode){ //IE; if(navigator.userAgent.indexOf("MSIE")!=-1){ this.proc.ie(wmode); } else if(navigator.userAgent.indexOf("Opera")!=-1){ this.proc.op(wmode); } else if(navigator.userAgent.indexOf("Firefox")!=-1||navigator.userAgent.indexOf("Safari")!=-1||navigator.userAgent.indexOf("Chrome")!=-1){ this.proc.ff(wmode); } /* else if(navigator.userAgent.indexOf("Chrome")!=-1){ this.proc.ie(wmode); } */ }, //除外判定; exclude:{ jogai:[], chk:function(jogaiId){ for(var i=0;i(.*?)$/im)){ html = ""+wmode2+RegExp.$2; } var div = document.createElement("div"); div.style.display="inline"; div.innerHTML = html; object[obj].parentNode.replaceChild(div,object[obj]); } var embed=document.getElementsByTagName("embed"); for(var emb in embed){ if(typeof(embed[emb])!='object'){continue;} var html2 = embed[emb].outerHTML; if(!html2){continue;} if(wmode){ var wmode2 = " WMODE='OPAQUE' "; } else{ var wmode2 = " WMODE='TRANSPARENT' "; } if(html2.match(/$/im)){ html2 = ""; } var div2 = document.createElement("div"); div2.style.display="inline"; div2.innerHTML = html2; embed[emb].parentNode.replaceChild(div2,embed[emb]); } }, ff:function(wmode){ var object=document.getElementsByTagName("object"); for(var obj in object){ if(typeof(object[obj])!='function' || object[obj].innerHTML == undefined){continue;} pa = document.createElement('param'); pa.name='wmode'; if(wmode){ pa.value='opaque'; } else{ pa.value='transparent'; } object[obj].appendChild(pa); } var embed=document.getElementsByTagName("embed"); if(embed.length){ for(var i=0;i/im)){ if(wmode){ html = RegExp.$1+""; } else{ html = RegExp.$1+""; } } embed[i].parentNode.innerHTML = html; } //embedのみ記述; else{ var str="/im)){ if(wmode){ html = RegExp.$1+""; } else{ html = RegExp.$1+""; } } embed[i].parentNode.innerHTML = html; } //embedのみ記述; else{ var str="=3){ // alert(RegExp.$1); //ページ内のiframe一覧 var iframe = document.getElementsByTagName('iframe'); for(var i=0;i iframe[i].offsetHeight){ // alert(iframe[i].contentWindow.document.body.offsetHeight); // iframe[i].style.setProperty("height",iframe[i].contentWindow.document.body.offsetHeight+"px"); var iframe = iframe[i]; //width if(iframe.contentWindow.document.body.scrollWidth > iframe.offsetWidth){ iframe.style.setProperty("max-width","none","important"); iframe.style.setProperty("width",iframe.contentWindow.document.body.scrollWidth+"px"); } //height if(iframe.contentWindow.document.body.scrollHeight > iframe.offsetHeight){ // if(!this.style.height && this.contentWindow.document.body.offsetHeight > this.offsetHeight){ // this.style.setProperty("max-height","none","important"); iframe.style.setProperty("height",iframe.contentWindow.document.body.scrollHeight+"px"); } } else{ $NC.$.addEvent(iframe[i],"load",function(){ // alert(this.style.height); // if(){return} // setTimeout(function(){ // alert(document.getElementsByTagName('iframe')[0].contentWindow.document.body.offsetWidth+">"+document.getElementsByTagName('iframe')[0].offsetWidth); // },1000); // alert(this.contentWindow.document.body.offsetWidth+">"+this.contentWindow.document.body.scrollWidth); //width if(this.contentWindow.document.body.scrollWidth > this.offsetWidth){ this.style.setProperty("max-width","none","important"); this.style.setProperty("width",this.contentWindow.document.body.scrollWidth+"px"); } //height if(this.contentWindow.document.body.scrollHeight > this.offsetHeight){ // if(!this.style.height && this.contentWindow.document.body.offsetHeight > this.offsetHeight){ // this.style.setProperty("max-height","none","important"); // this.style.setProperty("height",this.contentWindow.document.body.scrollHeight+"px","important"); this.style.setProperty("height",this.contentWindow.document.body.scrollHeight+"px"); } }); } } } } } }; /* //--------- //iframe //---------- $NC.$iframe={ flg:0,//進行フラグ※5秒で強制進行 num:0,//iframe数格納用 pickup:function(){ //iframe var tag = document.getElementsByTagName("iframe"); //5秒以上時間がかかった場合は、強制進行 setTimeout(function(){$NC.$iframe.task_wait()},5000); if(tag.length){ //iframe数をメモリ保持 this.num = tag.length; //iframe別にdivに格納 for(var j=0;j document.body.offsetWidth){ d.style.width=document.body.offsetWidth; } else{ d.style.width=e.offsetWidth+"px"; } e.parentNode.insertBefore(d,e); if(typeof(e.contentWindow.window.document.body)!='undefined'){ d.innerHTML = e.contentWindow.window.document.body.innerHTML; //iframe削除 e.parentNode.removeChild(e); } else{ } // //iframe設定完了処理 // this.load_check(); }, $:'' }; */ //swf設定 //$NC.$.swf(); //マウス座標取得用; $NC.$.addEvent(document,"mousemove",$NC.$proc.mouse); //swf-hack; //$NC.$.addEvent(window,"load",function(){$NC.$proc.swf.set()}); /* //便利関数; //var $ = $NC.$.id; var $t = $NC.$.tag; var $c = $NC.$.className; var $del = $NC.$.remove; var $s = $NC.$.style; */ if(typeof($NC)=="undefined"){$NC={}} $NC.$url={ '20131115154241':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/int-pre.html', 'title':'PID更新【ジュニア】International%sp%Pre', 'api':{ 'spc':{ 'flg':'0', 'update':'20131208152539' } }, 'update':'20131208152539', 'entry':'20131115154241' }, '20131115170953':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/int-1-2.html', 'title':'PID更新【ジュニア】International%sp%1・2', 'api':{ 'spc':{ 'flg':'0', 'update':'20131206114820' } }, 'update':'20131206114820', 'entry':'20131115170953' }, '20131115171017':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/int-3-4.html', 'title':'PID更新【ジュニア】International%sp%3・4', 'api':{ 'spc':{ 'flg':'0', 'update':'20131222152224', 'tpl':'20131210140212' } }, 'update':'20131222152224', 'entry':'20131115171017' }, '20131115171047':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/int-5-6.html', 'title':'PID更新【ジュニア】International%sp%5・6', 'api':{ 'spc':{ 'flg':'0', 'update':'20131222154312' } }, 'update':'20131222154312', 'entry':'20131115171047' }, '20131115171148':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/int-7-8.html', 'title':'PID変更【ジュニア】International%sp%7・8', 'api':{ 'spc':{ 'flg':'0', 'update':'20131222155106' } }, 'update':'20131222155106', 'entry':'20131115171148' }, '20131115171256':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/regular.html', 'title':'PID更新【ジュニア】レギュラーコース', 'api':{ 'spc':{ 'flg':'0', 'update':'20131208202458' } }, 'update':'20131208202458', 'entry':'20131115171256' }, '20131115172648':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/level.html', 'title':'【ジュニア】COCO塾ジュニア学習進度・到達目標モデル', 'api':{ 'spc':{ 'flg':'0', 'update':'20131115172648' } }, 'update':'20131115172648', 'entry':'20131115172648' }, '20131115172725':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/school/index.html', 'title':'PID更新【ジュニア】スクールを探す', 'api':{ 'spc':{ 'flg':'0', 'update':'20131209102046' } }, 'update':'20131209102046', 'entry':'20131115172725' }, '20131115172751':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/school/touhoku.html', 'title':'【ジュニア】北海道・東北エリア', 'api':{ 'spc':{ 'flg':'0', 'update':'20131115172751' } }, 'update':'20131115172751', 'entry':'20131115172751' }, '20131115172812':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/school/tokyo.html', 'title':'【ジュニア】東京エリア', 'api':{ 'spc':{ 'flg':'0', 'update':'20131115172812' } }, 'update':'20131115172812', 'entry':'20131115172812' }, '20131115172830':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/school/kanto.html', 'title':'【ジュニア】関東エリア', 'api':{ 'spc':{ 'flg':'0', 'update':'20131115172830' } }, 'update':'20131115172830', 'entry':'20131115172830' }, '20131115172851':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/school/chubu.html', 'title':'【ジュニア】中部エリア', 'api':{ 'spc':{ 'flg':'0', 'update':'20131115172851' } }, 'update':'20131115172851', 'entry':'20131115172851' }, '20131115172912':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/school/kinki.html', 'title':'【ジュニア】近畿エリア', 'api':{ 'spc':{ 'flg':'0', 'update':'20131115172912' } }, 'update':'20131115172912', 'entry':'20131115172912' }, '20131115172944':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/school/kyushu.html', 'title':'【ジュニア】中四国・九州・沖縄エリア', 'api':{ 'spc':{ 'flg':'0', 'update':'20131115172944' } }, 'update':'20131115172944', 'entry':'20131115172944' }, '20131115173005':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/school/type.html', 'title':'【ジュニア】スクールタイプについて', 'api':{ 'spc':{ 'flg':'0', 'update':'20131115173005' } }, 'update':'20131115173005', 'entry':'20131115173005' }, '20131118085631':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/fc/procedures/index.html', 'title':'★PID更新【FC】開校までの流れ', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130759' } }, 'update':'20140123130759', 'entry':'20131118085631' }, '20131118093643':{ 'flg':'0', 'url':'http://www.cocojuku.jp/about/feature.html', 'title':'PID更新【COCO塾】COCO塾の特徴', 'api':{ 'spc':{ 'flg':'0', 'update':'20131210100309' } }, 'update':'20131210100309', 'entry':'20131118093643' }, '20131118093708':{ 'flg':'0', 'url':'http://www.cocojuku.jp/about/instructor.html', 'title':'PID更新【COCO塾】インストラクター', 'api':{ 'spc':{ 'flg':'0', 'update':'20131222170255' } }, 'update':'20131222170255', 'entry':'20131118093708' }, '20131118093749':{ 'flg':'0', 'url':'http://www.cocojuku.jp/about/support.html', 'title':'PID更新【COCO塾】サポート', 'api':{ 'spc':{ 'flg':'0', 'update':'20131222171151' } }, 'update':'20131222171151', 'entry':'20131118093749' }, '20131118093827':{ 'flg':'0', 'url':'http://www.cocojuku.jp/about/special.html', 'title':'PID更新【COCO塾】COCO塾%sp%受講生サポートのご案内', 'api':{ 'spc':{ 'flg':'0', 'update':'20131225151031' } }, 'update':'20131225151031', 'entry':'20131118093827' }, '20131118095912':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/career.html', 'title':'PID更新【COCO塾】英語資格対策・キャリアアップコース', 'api':{ 'spc':{ 'flg':'0', 'update':'20131227091156' } }, 'update':'20131227091156', 'entry':'20131118095912' }, '20131118095951':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/price.html', 'title':'PID更新【COCO塾】受講料割引/お支払い方法', 'api':{ 'spc':{ 'flg':'0', 'update':'20131227123907' } }, 'update':'20131227123907', 'entry':'20131118095951' }, '20131118100022':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/level.html', 'title':'要確認【COCO塾】COCO塾のレベル設計', 'api':{ 'spc':{ 'flg':'0', 'update':'20131222195711' } }, 'update':'20131222195711', 'entry':'20131118100022' }, '20131118100141':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/chinese.html', 'title':'【COCO塾】中国語コース', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100141' } }, 'update':'20131118100141', 'entry':'20131118100141' }, '20131118100215':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/chinese_level.html', 'title':'【COCO塾】中国語コース%sp%レベル設計', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100215' } }, 'update':'20131118100215', 'entry':'20131118100215' }, '20131118100255':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/chinese_discount.html', 'title':'【COCO塾】中国語コース%sp%割引制度', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100255' } }, 'update':'20131118100255', 'entry':'20131118100255' }, '20131118100416':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese2.html', 'title':'【COCO塾】日本語コース開講', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100416' } }, 'update':'20131118100416', 'entry':'20131118100416' }, '20131118100458':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese2_general.html', 'title':'【COCO塾】一般日本語コース', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100458' } }, 'update':'20131118100458', 'entry':'20131118100458' }, '20131118100525':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese2_business.html', 'title':'【COCO塾】ビジネス日本語コース', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100525' } }, 'update':'20131118100525', 'entry':'20131118100525' }, '20131118100557':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese2_level.html', 'title':'【COCO塾】日本語コース%sp%レベル設計', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100557' } }, 'update':'20131118100557', 'entry':'20131118100557' }, '20131118100716':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese.html', 'title':'【COCO塾】Japanese%sp%Course%sp%OPENED%sp%for%sp%foreigners', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100716' } }, 'update':'20131118100716', 'entry':'20131118100716' }, '20131118100802':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese_school.html', 'title':'【COCO塾】School%sp%Branches', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100802' } }, 'update':'20131118100802', 'entry':'20131118100802' }, '20131118100845':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese_level.html', 'title':'【COCO塾】Course%sp%Levels', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100845' } }, 'update':'20131118100845', 'entry':'20131118100845' }, '20131118100923':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese_general.html', 'title':'【COCO塾】Generel%sp%Japanese%sp%Course', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118100923' } }, 'update':'20131118100923', 'entry':'20131118100923' }, '20131118101003':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese_business.html', 'title':'【COCO塾】Business%sp%Japanese%sp%Course', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118101003' } }, 'update':'20131118101003', 'entry':'20131118101003' }, '20131118102436':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese3.html', 'title':'【COCO塾】面向外国人的日语课程%sp%COCO塾', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118102436' } }, 'update':'20131118102436', 'entry':'20131118102436' }, '20131118102538':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese3_school.html', 'title':'【COCO塾】日语课程开课学校', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118102538' } }, 'update':'20131118102538', 'entry':'20131118102538' }, '20131118102610':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese3_level.html', 'title':'【COCO塾】日语课程水平', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118102610' } }, 'update':'20131118102610', 'entry':'20131118102610' }, '20131118102649':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese3_general.html', 'title':'【COCO塾】一般日语课程', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118102649' } }, 'update':'20131118102649', 'entry':'20131118102649' }, '20131118102716':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/japanese3_business.html', 'title':'【COCO塾】商务日语课程', 'api':{ 'spc':{ 'flg':'0', 'update':'20131118102716' } }, 'update':'20131118102716', 'entry':'20131118102716' }, '20131118102943':{ 'flg':'0', 'url':'http://www.cocojuku.jp/voice/file01.html', 'title':'PID更新【COCO塾】【FILE01%sp%短期留学】短期留学で英語力を身につけたい', 'api':{ 'spc':{ 'flg':'0', 'update':'20131226210317' } }, 'update':'20131226210317', 'entry':'20131118102943' }, '20131118103014':{ 'flg':'0', 'url':'http://www.cocojuku.jp/voice/file02.html', 'title':'PID更新【COCO塾】【FILE02%sp%ビジネス】仕事で英語を活かしたい', 'api':{ 'spc':{ 'flg':'0', 'update':'20131226210258' } }, 'update':'20131226210258', 'entry':'20131118103014' }, '20131210140212':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/int-1-2.html', 'title':'PID更新【ジュニア】International%sp%1・2_(template)', 'entry':'20131210140212', 'update':'20131210140212', 'api':{ 'spc':{ 'flg':'0', 'update':'20131210140212', 'tplflg':'20131115170953' } } }, '20131211132129':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/fc/duties/index.html', 'title':'PID更新【FC】ホームインストラクターの仕事について_(template)', 'entry':'20131211132129', 'update':'20131211132129', 'api':{ 'spc':{ 'flg':'0', 'update':'20131211132129', 'tplflg':'20131118085601' } } }, '20131227112046':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/process/index.html', 'title':'★PID更新【ジュニア】入学までの流れ', 'api':{ 'spc':{ 'flg':'1', 'update':'20140123130649' } }, 'update':'20140123130649', 'entry':'20131227112046' }, '20131227112509':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/faq/index.html', 'title':'★PID更新【ジュニア】よくあるご質問', 'api':{ 'spc':{ 'flg':'1', 'update':'20140123130629' } }, 'update':'20140123130629', 'entry':'20131227112509' }, '20131227153638':{ 'flg':'0', 'url':'http://www.cocojuku.jp/voice/index.html', 'title':'★【COCO塾】受講生の声', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130615' } }, 'update':'20140123130615', 'entry':'20131227153638' }, '20131227155520':{ 'flg':'0', 'url':'http://www.cocojuku.jp/about/concept.html', 'title':'%sp%PID更新【COCO塾】コンセプト', 'api':{ 'spc':{ 'flg':'0', 'update':'20131227155520' } }, 'update':'20131227155520', 'entry':'20131227155520' }, '20131227172455':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/int-9-10.html', 'title':'PID更新【ジュニア】International%sp%9・10', 'api':{ 'spc':{ 'flg':'0', 'update':'20131227172455' } }, 'update':'20131227172455', 'entry':'20131227172455' }, '20131227214410':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/about/index.html', 'title':'PID更新【ジュニア】COCO塾ジュニアとは', 'api':{ 'spc':{ 'flg':'0', 'update':'20131227214410' } }, 'update':'20131227214410', 'entry':'20131227214410' }, '20140106094640':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/fc/about/index.html', 'title':'★PID更新【FC】COCO塾ジュニアとは', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130603' } }, 'update':'20140123130603', 'entry':'20140106094640' }, '20140108183358':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/fc/coaching-school/index.html', 'title':'★PID更新【FC】塾経営者のみなさまへ', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130552' } }, 'update':'20140123130552', 'entry':'20140108183358' }, '20140109094934':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/fc/courses/index.html', 'title':'★PID更新【FC】開講コース', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130538' } }, 'update':'20140123130538', 'entry':'20140109094934' }, '20140109163507':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/fc/duties/index.html', 'title':'★PID更新【FC】ホームインストラクターの仕事について', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130521' } }, 'update':'20140123130521', 'entry':'20140109163507' }, '20140109163814':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/fc/support/index.html', 'title':'★PID更新【FC】サポート体制について', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130505' } }, 'update':'20140123130505', 'entry':'20140109163814' }, '20140109163959':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/fc/faq/index.html', 'title':'PID更新【FC】よくあるご質問', 'api':{ 'spc':{ 'flg':'0', 'update':'20140109163959' } }, 'update':'20140109163959', 'entry':'20140109163959' }, '20140123125836':{ 'flg':'0', 'url':'http://www.cocojuku.jp/faq/index.html', 'title':'★PID更新【COCO塾】よくあるご質問', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130434' } }, 'update':'20140123130434', 'entry':'20140123125836' }, '20140123130052':{ 'flg':'0', 'url':'http://www.cocojuku.jp/process/index.html', 'title':'★PID更新【COCO塾】入学までの流れ', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130424' } }, 'update':'20140123130424', 'entry':'20140123130052' }, '20140123130309':{ 'flg':'0', 'url':'http://www.cocojuku.jp/about/group.html', 'title':'★PID更新【COCO塾】グループ', 'api':{ 'spc':{ 'flg':'0', 'update':'20140123130417' } }, 'update':'20140123130417', 'entry':'20140123130309' }, '20140425152606':{ 'flg':'0', 'url':'http://www.cocojuku.jp/course/index.html', 'title':'PID更新【COCO塾】コース/料金', 'api':{ 'spc':{ 'flg':'0', 'update':'20140425152606' } }, 'update':'20140425152606', 'entry':'20140425152606' }, '20140501131239':{ 'flg':'0', 'url':'http://jr.cocojuku.jp/courses/index.html', 'title':'★PID更新【ジュニア】コースのご紹介', 'api':{ 'spc':{ 'flg':'1', 'update':'20140501131239' } }, 'update':'20140501131239', 'entry':'20140501131239' } }; if(typeof($NC)=="undefined"){$NC={}} $NC.$domain={ '0':'cocojuku.jp' }; $NC.$product={ 'nc2':'', 'spa':'', 'spc':'2.004.js' }; $NC.$pv_upper={ 'nc2':'', 'spa':'', 'spc':'100000' }; $NC.$pv_upper_add={ 'nc2':'', 'spa':'', 'spc':'' }; $NC.$stop_flg={ 'nc2':'1', 'spa':'1', 'spc':'' }; $NC.$upper_flg={ 'nc2':'', 'spa':'', 'spc':'' }; $NC.$ssl={ 'nc2':'on', 'spa':'on' }; $NC.api.check.product();