/**********************************************************************
project name : NAIGAI [ flash.js ]

09.08.01
***********************************************************************
static variable  : ST_FL_XXXXXXX
global variable  : gFl_xxxxxx
functions        : flash_xxxxxx
**********************************************************************/

//Flash Player「あり」「なし」判別
//HTML側に変数をセット(必須以外の項目は必要に応じて追加)
var gFl_astrPara  = {
	'FlVersion': '8',        // 必須(判別用のFlash Playerバージョン設定)
	'typeHTML' : '0',        // 必須(1:XHTML mode 0:HTML mode HTML設定)
	'movie'    : '/common/img/index.swf',  // 必須(swfファイル名設定)
	'width'    : '820',      // 必須(swf 横幅設定)
	'height'   : '250',      // 必須(swf 縦幅設定)
	'id'       : 'top',      // 必須(swf id設定)
	'codebase' : 'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',   // 必須(Flash Player Download Version設定)
	'menu'     : 'true',
	'align'    : 'middle',
	'quality'  : 'high',
	'bgcolor'  : '#000000',
	'wmode'    : 'opaque'
}

//FLASH Pluginがない時の処理
var gFl_intResult = flash_setHTML(gFl_astrPara);
if (gFl_intResult < 0){
	document.write('<div><img src="img/mainvis.jpg" width="760" height="450" border="0" usemap="#Map">');
	document.write('<map name="Map">');
	document.write('<area shape="rect" coords="122,0,216,100" href="03brands/index.shtml" title="BRANDS">');
	document.write('<area shape="rect" coords="216,0,280,100" href="03brands/03/w_brands.shtml" title="LADY’S">');
	document.write('<area shape="rect" coords="280,0,342,100" href="03brands/03/m_brands.shtml" title="MEN’S">');
	document.write('<area shape="rect" coords="342,0,447,100" href="03brands/02/index.shtml" title="CHILDREND’S">');
	document.write('<area shape="rect" coords="447,0,573,100" href="03brands/04/online/index.shtml" title="ONLINE SHOP">');
	document.write('<area shape="rect" coords="573,0,675,100" href="06care/index.shtml" title="CARE BOOK">');
	document.write('<area shape="rect" coords="675,0,759,100" href="05mos/index.shtml" title="MUSEUM">');
	document.write('<area shape="rect" coords="540,428,605,441" href="01corp/index.shtml" title="COMPANY">');
	document.write('<area shape="rect" coords="622,428,646,441" href="ir/index.shtml" title="IR">');
	document.write('<area shape="rect" coords="665,428,745,441" href="contact/index.shtml" title="CONTACT US">');
	document.write('</map></div>');
}


/*********************************************************************/