/* default variables
------------------------------------------------------------*/
var agent = navigator.userAgent.toLowerCase();
var win = (agent.indexOf("windows") != -1);
var mac = (agent.indexOf("mac") != -1);
var opera = agent.indexOf("opera",0) != -1;
var ie = agent.indexOf("msie") != -1 && !opera;
var ie45 = agent.indexOf("msie 4.5") != -1;
var ns = agent.indexOf("netscape") != -1 && !opera;
var plugin;


/* flash plugin check
------------------------------------------------------------*/
function checkFlashPlugin(ver){
	plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
	if(plugin){
		plugin = parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= ver;
	}else if(win && ie){
		ver = "ShockwaveFlash.ShockwaveFlash." + ver;
		document.open();
		document.write('<scr' + 'ipt language=VBScript\> \n');
		document.write('on error resume next \n');
		document.write('plugin = ( IsObject(CreateObject("' + ver + '")))\n');
		document.write('</scr' + 'ipt\> \n');
		document.close();
	}
	return plugin;
}


/* set flash contents
------------------------------------------------------------*/
function setFlash(url,w,h,bg,ver){
	if(checkFlashPlugin(ver) || (mac && ie45)){
		document.open();
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + w + '" height="' + h + '">');
		document.write('<param name="movie" value="' + url + '">');
		document.write('<param name="quality" value="high">');
		document.write('<param name="bgcolor" value="' + bg + '"><embed src="' + url + '" quality="high" width="' + w + '" bgcolor="' + bg + '" height="' + h + '" name="" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');
		document.close();
	}else{
		document.open();
		document.write('<div id="substitution">');
		document.write('<ul>');
		document.write('<li><a href="company/index.html">会社案内</a></li>');
		document.write('<li><a href="recruit/index.html">採用情報</a></li>');
		document.write('<li><a href="restaurant/index.html">店舗情報</a></li>');
		document.write('<li><a href="outsourcing/index.html">業務受託</a></li>');
		document.write('<li><a href="contacting/index.html">お客様の声</a></li>');
		document.write('<li><a href="action/index.html">当社の取り組み</a></li>');
		document.write('<li><a href="csr/index.html">社会的責任</a></li>');
		document.write('<li><a href="news/index.html">最新情報</a></li>');
		document.write('<li><a href="link/index.html">関連リンク</a></li>');
		document.write('<li><a href="group/index.html">グループ案内</a></li>');
		document.write('</ul>');
		document.write('</div>');
		document.close();
	}
}
