<!--
//showSWF('images/introduction1.0.1.swf',940,240,'images/noflash.jpg');
function showSWF(path,width,height,substitute_image){
	var mime = "application/x-shockwave-flash";
	var n = navigator;
	var d = document;
	if (n.userAgent.indexOf('Mobile') == -1){
		var hash = new Date();
		var time = hash.getTime();
		path = path + "?timer=" + time;
		d.write('\n<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="'+width+'" height="'+height+'">\n');
		d.write('<param name="movie" value="'+path+'"></param>\n');
		d.write('<param name="quality" value="high"></param>\n');
		d.write('<param name="wmode" value="transparent"></param>\n');
		d.write('<embed src="'+path+'" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/jp/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'">\n');
		d.write('</embed>\n');
		d.write('</object>\n');
	}
	else {
		d.write('<map id="top" name="top">');
		d.write('<area shape="rect" coords="0,31,148,75" href="http://www.incrave.co.jp/?mode=pc" alt="HOME">');
		d.write('<area shape="rect" coords="633,38,713,63" href="http://www.incrave.co.jp/?mode=pc" alt="HOME">');
		d.write('<area shape="rect" coords="713,38,813,63" href="/support/sitemap.html" alt="サイトマップ">');
		d.write('<area shape="rect" coords="813,38,893,63" href="/recruit/" alt="採用情報">');
		d.write('</map>');
		d.write('<div aline="center"><img usemap="#top" id="top" src="'+substitute_image+'" width="'+width+'" height="'+height+'" /></div>')
	}
}
//-->
