/*======================================================

100219エディテindex.js　！改変時日付変更のこと！

========================================================*/
//過去のcookieのクリア
document.cookie = "myCloset= ; expires=31-Dec-1999 23:59:59 GMT;";
document.cookie = "myClosetClear= ; expires=31-Dec-1999 23:59:59 GMT;";
document.cookie = "RPT= ; expires=31-Dec-1999 23:59:59 GMT;";
document.cookie = "favBrand1= ; expires=31-Dec-1999 23:59:59 GMT;";
document.cookie = "favBrand2= ; expires=31-Dec-1999 23:59:59 GMT;";
document.cookie = "favBrand3= ; expires=31-Dec-1999 23:59:59 GMT;";
document.cookie = "EDITER_checkItem= ; expires=31-Dec-1999 23:59:59 GMT;";
document.cookie = "EDITER_favBrand= ; expires=31-Dec-1999 23:59:59 GMT;";


//3つのタブの表示コントロール
function controlTab(){
  layerName = new Array('tabAllRank', 'tabOuterRank', 'tabGoodsRank');
  tabNum = getCookie('EDITER_tabNum');
  if(tabNum == ""){
	tabNum = 0;
  }
//すべてのタブをまず隠す
  for(n=0; n<3; n++){
    hideLAYER(layerName[n]);
  }
//cookieからタブを表示
  showLAYER(layerName[tabNum]);
//ボタンのアクティブ 
eval("document.tab0"+(tabNum-0+1)+".src='index_images/tab_img0"+(tabNum-0+1)+"st.jpg'");
}

function checkItemOutput(){

	for(n=0; n<checkItem.length; n++){
		document.writeln('<div class="recommendItem">');
/*通常時
		document.writeln('<a href="http://www.bellemaison.jp/100/pr/'+checkItem[n][0]+'/'+checkItem[n][1]+'/index.html?rc_editer"><img src="jsimages/'+checkItem[n][1]+'.jpg" alt="" width="90" height="90"></a>');
*/
/*新媒年季に塗り替え　DATE:090131(090709塗り替え媒年季変更)*/
		bainenki = checkItem[n][0];
		chkBainenki = bainenki.substr(0, 8);
//alert(chkBainenki);
		if(chkBainenki != "4892009A"){
			chkflag = 1;
		}else{
			chkflag = 0;
		}
		if(chkflag == 1){
				document.writeln('<a href="http://www.bellemaison.jp/100/pr/'+ bainenki +'/'+checkItem[n][1]+'/index.html?rc_editer"><img src="jsimages/'+checkItem[n][1]+'.jpg" alt="" width="90" height="90"></a>');
			} else {
				document.writeln('<a href="http://www.bellemaison.jp/100/pr/'+ '4892009C' +'/'+checkItem[n][1]+'/index.html?rc_editer"><img src="jsimages/'+checkItem[n][1]+'.jpg" alt="" width="90" height="90"></a>');
			}
/*新媒年季に塗り替え ここまで*/
		document.writeln('</div>');
	}
}



function favBrandOutput(){
  if(bCall[0]!="" || bCall[1]!="" || bCall[2]!="" || bCall[3]!=""){

document.writeln('<div class="checkJS">');
document.writeln('<h3 class="checkJSTitle"><img src="index_images/tabRecommend_ttl03.gif" alt="最近チェックしたブランド" width="770" height="44"></h3>');
document.writeln('<ul class="checkJSBody">');

for(i=0; i<4; i++){
	if(bCall[i] != ""){
		document.writeln('<li>');
		document.writeln('<div><a href="brand/'+bCall[i]+'.html"><img src="jsimages/'+bCall[i]+'.jpg" alt="'+brandName[bCall[i]]+'" width="70" height="130"></a></div>');
		document.writeln('<p><a href="brand/'+bCall[i]+'.html">'+brandName[bCall[i]]+'</a></p>');
		document.writeln('</li>');
	}else{
		document.write('<li></li>');
	}
}


document.writeln('</ul>');
document.writeln('<!-- /checkJS --></div>');
document.writeln('<div class="relatedJS">');
document.writeln('<h3 class="relatedJSTitle"><img src="index_images/tabRecommend_ttl04.gif" alt="関連・おすすめブランド" width="770" height="16"></h3>');
document.writeln('<ul class="relatedJSBody">');

for(i=0; i<4; i++){

	if(bCall[i] != ""){
		document.write('<li>');
		document.write('<a href="brand/'+osusume[bCall[i]]+'.html">'+brandName[osusume[bCall[i]]]+'</a>');
		document.writeln('</li>');
	}else{
		document.write('<li></li>');
	}
}

document.writeln('</ul>');
document.writeln('<!-- /relatedJS --></div>');

  }
}


function checkItemOutput02(){

for(n=0; n<checkItem.length; n++){
	if(n<7) {
			document.writeln('<div id="check">');
/*通常時
			document.writeln('<a href="http://www.bellemaison.jp/100/pr/'+checkItem[n][0]+'/'+checkItem[n][1]+'/index.html?rc_editer"><img src="jsimages/'+checkItem[n][1]+'.jpg" alt="" width="90" height="90"></a>');
*/
/*新媒年季に塗り替え　DATE:090131(090709塗り替え媒年季変更)*/
		bainenki = checkItem[n][0];
		chkBainenki = bainenki.substr(0, 8);
		if(chkBainenki != "4892009A"){
			chkflag = 1;
		}else{
			chkflag = 0;
		}
		if(chkflag == 1){
				document.writeln('<a href="http://www.bellemaison.jp/100/pr/'+ bainenki +'/'+checkItem[n][1]+'/index.html?rc_editer"><img src="jsimages/'+checkItem[n][1]+'.jpg" alt="" width="90" height="90"></a>');
			} else {
				document.writeln('<a href="http://www.bellemaison.jp/100/pr/'+ '4892009C' +'/'+checkItem[n][1]+'/index.html?rc_editer"><img src="jsimages/'+checkItem[n][1]+'.jpg" alt="" width="90" height="90"></a>');
			}
/*新媒年季に塗り替え ここまで*/
			document.writeln('</div>');
		}
	}
}

