/*
function linkcolor(title){
	//現在表示中のページをピンク色で表示
	tl = document.title;
	title = (title == tl) ? "<font color='#FF0099'>" + title + "</font>" : title;
	return title
}
*/

function topics(title,link,iconno){
	/*
	title = linkcolor(title);
	*/
	document.write('<table border="0" cellpadding="0" cellspacing="0" width="186" background="' + path + 'img/2008img/submenu_menu_bk_off.gif">');
	document.write('<tr>');
	document.write('<td width="20" align="left" valign="middle">');
	document.write('<img src="' + path + 'img/null.gif" width="30" height="30" border="0"><br>');
	document.write('</td>');
	document.write('<td width="156" align="left" valign="middle">');
	document.write('<img src="' + path + 'img/null.gif" width="1" height="3" border="0"><br>');

	if(iconno == "1"){'<span style=font-size:10pt;color:#059146;font-weight:bold;>' 
	document.write(+ title + '</span><br>');
	}
	else{
		if(link != ""){
			document.write('<a href="' + path + link + '">');
		}
		document.write('<span style=font-size:10pt;color:#059146;font-weight:bold;>' + title + '</span>');
		if(link != ""){
			document.write('</a>');
		}
		document.write('<br>');
	}
	
	document.write('</td></tr>');
	document.write('</table>');
	
}
function topics_on(title,link,iconno){
	/*
	title = linkcolor(title);
	*/
	document.write('<table border="0" cellpadding="0" cellspacing="0" width="186" background="' + path + 'img/2008img/submenu_menu_bk_on.gif">');
	document.write('<tr>');
	document.write('<td width="20" align="left" valign="middle">');
	document.write('<img src="' + path + 'img/null.gif" width="30" height="30" border="0"><br>');
	document.write('</td>');
	document.write('<td width="156" align="left" valign="middle">');
	document.write('<img src="' + path + 'img/null.gif" width="1" height="3" border="0"><br>');

	if(iconno == "1"){
	document.write('<span style=font-size:10pt;color:#059146;font-weight:bold;>' + title + '</sapn><br>');
	}
	else{
		if(link != ""){
			document.write('<a href="' + path + link + '">');
		}
		document.write('<span style=font-size:10pt;color:#059146;font-weight:bold;>'  + title + '</sapn>');
		if(link != ""){
			document.write('</a>');
		}
		document.write('<br>');
	}
	
	document.write('</td></tr>');
	document.write('</table>');
	
}
function child(title,link,iconno){
	
	// 文字列の長さを解析
	var maxlength = 0;
	var chkstring = "!\"#$%&'()*+,-./0123456789:;<=>?@[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~｡｢｣､ｦｧｨｩｪｫｬｭｯｰｱｲｳｴｵｶｷｸｹｺｻｼｽｾｿﾀﾁﾂﾃﾄﾅﾆﾇﾈﾉﾊﾋﾌﾍﾎﾏﾐﾑﾒﾓﾔﾕﾖﾗﾘﾙﾚﾛﾜﾝﾟﾞ ";
	for (var i = 0 ; i < title.length;i++){
		if (chkstring.indexOf(title.charAt(i),0) != -1){
			maxlength++;
		}else{
			maxlength += 2.0;
		}
	}
	document.write('<img src="' + path + 'img/null.gif" width="1" height="5" border="0"><br>');
	document.write('<table border="0" cellpadding="0" cellspacing="0" width="185">');
	document.write('<tr>');
	document.write('<td width="10" align="center" valign="middle">');
	document.write('<img src="' + path + 'img/null.gif" width="10" height="3" border="0"><br>');
	link = (link == "") ? title : "<a href='" + path + link + "'>" + title + "</a>";
	document.write('</td>');
	document.write('<td width="20" align="center" valign="top">');
	document.write('<img src="' + path + 'img/null.gif" width="1" height="1" border="0"><br>');
	document.write('<img src="' + path + 'img/plus2.gif" width="10" height="10" border="0"><br>');
	document.write('</td>');
	document.write('<td width="155" align="left" valign="top">');
	document.write(link + '<br>');
	document.write('</td></tr>');
	document.write('</table>');
}

function grandchild(title,link,iconno1,iconno2){
	
	// アイコン画像のロード
	var icon1 = (iconno1 == "") ? path + "img/null" : path + "img/line" + iconno1;
	var icon2 = (iconno2 == "") ? path + "img/null" : path + "img/line" + iconno2;

	// 文字列の長さを解析
	var maxlength = 0;
//ABCDEFGIJKLMNOPQRSTUVWXYZ
	var chkstring = "!\"#$%&'()*+,-./0123456789:;<=>?@[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~｡｢｣､ｦｧｨｩｪｫｬｭｯｰｱｲｳｴｵｶｷｸｹｺｻｼｽｾｿﾀﾁﾂﾃﾄﾅﾆﾇﾈﾉﾊﾋﾌﾍﾎﾏﾐﾑﾒﾓﾔﾕﾖﾗﾘﾙﾚﾛﾜﾝﾟﾞ \s";
	for (var i = 0 ; i < title.length;i++){
		if (chkstring.indexOf(title.charAt(i),0) != -1){
			maxlength++;
		}else{
			maxlength += 2.3;
		}
	}
	/*
	title = linkcolor(title);
	*/
	
	// リンクとタイトルを合成
	link = (link == "") ? "<span class='GR'>" + title + "</span>" : "<a href='" + path + link + "'>" + title + "</a>";

	document.write('<table border="0" cellpadding="0" cellspacing="0" width="185">');
	document.write('<tr>');
	document.write('<td width="7" align="center" valign="middle">');
	document.write('<img src="' + path + 'img/null.gif" width="7" height="15" border="0"><br>');
	document.write('</td>');
	document.write('<td width="30" align="center" valign="middle">');
	document.write('<img src="' + icon2 + '.gif" width="15" height="15" border="0"><br>');
	for (var i = parseInt(maxlength / 25); i > 0; i--){
		if(iconno2 == "" || iconno2 == 1){
			document.write('<img src="' + path + 'img/null.gif" width="15" height="15" border="0"><br>');
		}else{
			document.write('<img src="' + path + 'img/line0.gif" width="15" height="15" border="0"><br>');
		}
	}
	document.write('</td><td width="148" align="left" valign="top">');
	document.write(link + '<br>');
	document.write('</td></tr>');
	document.write('</table>');
}

function navi(index){

	if(EorJ){
		/*枠*/
		document.write('<table border="0" cellpadding="0" cellspacing="0" width="186" background="' + path + 'img/2008img/submenu_bk.gif">');
		document.write('<tr>');
		document.write('<td width="186" align="center" valign="middle">');
		document.write('	<img src="' + path + 'img/2008img/submenu_menu.gif" width="186" height="20" border="0"><br>');
		document.write('<td>');
		document.write('<tr>');
		document.write('<td>');
		/*メニュー*/
		document.write('		<table border="0" cellpadding="0" cellspacing="0" width="186" bgcolor="#FFFEDF"');
		document.write('		<tr>');
		document.write('		<td width="186" align="center" valign="middle">');
		/************************************************************************************
		**	製品案内
		*************************************************************************************/
		//topics_on1a("製品情報一覧","product/hproduct/index.html");
		link = "product/hproduct/index.html";
		document.write('<table border="0" cellpadding="0" cellspacing="0" width="186" background="' + path + 'img/2008img/submenu_menu_bk_seihin.gif">');
		document.write('<tr>');
		document.write('<td align="left" valign="middle">');
		document.write('<a href="' + path + link + '">');
		if(index == 0){
			document.write('<img src="' + path + '' + path + 'img/2008img/submenu_menu_bk_0_on.gif" border="0"><br>');
		}
		else{
			document.write('<img src="' + path + '' + path + 'img/2008img/submenu_menu_bk_0_off.gif" border="0"><br>');			
		}
		document.write('</a>');
		document.write('</td>');
		document.write('</tr>');
		document.write('</table>');
		/************************************************************************************
		**	カテゴリから探す
		*************************************************************************************/
		//topics_on1a("製品情報一覧","product/hproduct/index.html");
		link = "product/hproduct/index2.html";
		document.write('<table border="0" cellpadding="0" cellspacing="0" width="186" background="' + path + 'img/2008img/submenu_menu_bk_seihin.gif">');
		document.write('<tr>');
		document.write('<td align="left" valign="middle">');
		document.write('<a href="' + path + link + '">');
		if(index == 1){
			document.write('<img src="' + path + '' + path + 'img/2008img/submenu_menu_bk_1_on.gif" border="0"><br>');
		}
		else{
			document.write('<img src="' + path + '' + path + 'img/2008img/submenu_menu_bk_1_off.gif" border="0"><br>');			
		}
		document.write('</a>');
		document.write('</td>');
		document.write('</tr>');
		document.write('</table>');
		if(index == 1){
			child("ナノテクノロジー関連素材","",2);
			grandchild("ナノ粒子","product/hproduct/ultrafine.html","0","2");
			grandchild("ナノジルコニア分散液","product/hproduct/ad_nanomenu.html","0","2");
			grandchild("機能性塗料","product/hproduct/coating.html","0","2");
			grandchild("機能性フィルム","product/hproduct/film.html","0","1");
			/* del 復活の予定あり
			grandchild("機能性プラスチック板","product/hproduct/plastic.html","0","1");
			*/

			child("半導体製造装置用部品","",2);
			grandchild("静電チャック","product/hproduct/etching.html","0","2");
			grandchild("SiCヒーター","product/hproduct/sicheater.html","0","2");
			grandchild("SiCセラミックス部品","product/hproduct/cmp.html","0","1");

			child("衛生材料","",2);
			grandchild("抗菌剤","product/hproduct/antibacterial.html","0","2");
			grandchild("親水性イージークリーンコーティング液","product/hproduct/ad_easymenu.html","0","1");

			child("光通信関連","",1);
			grandchild("LN変調器","product/hproduct/ln.html","","1");
			child("CATV・衛星関連","",1);
			grandchild("光送受信機 CATV用","product/hproduct/satellite.html","","2");
			grandchild("光送受信機 FTTH用","product/hproduct/satellite.html","","2");
			grandchild("光分配器 FTTH用","product/hproduct/satellite.html","","2");
			grandchild("光送受信機 アナログ無線用","product/hproduct/satellite3.html","","1");
			document.write('<img src="' + path + 'img/null.gif" width="1" height="5" border="0"><br>');
		}
		/************************************************************************************
		**	事業部案内
		*************************************************************************************/
		if(index == 3){
			topics_on("事業部案内","division/hproduct/index.html");
		}
		else{
			topics("事業部案内","division/hproduct/index.html");
		}
		if(index == 3){
			// 新材料事業
			child("新材料事業部","division/hproduct/material.html",2);
//			grandchild("よくある問合せ","division/hproduct/material_faq.html","0","1");
			// 光電子事業
			child("光電子事業部","division/hproduct/opto.html",2);
			//grandchild("よくある問合せ","division/hproduct/opto_faq.html","0","1");
			// 新規技術研究所
			child("新規技術研究所","division/hproduct/laboratory.html",2);
			grandchild("オプトエレクトロニクス研究グループ","division/hproduct/labo_opto.html","0","2");
			grandchild("新材料研究グループ","division/hproduct/labo_mate.html","0","2");
			grandchild("分析リサーチセンター","division/hproduct/assay.html","0","1");
			child("事業部の歴史","division/hproduct/history.html",2);
			child("関連会社の紹介","division/hproduct/company.html",1);
			document.write('<img src="' + path + 'img/null.gif" width="1" height="5" border="0"><br>');
		}
		/************************************************************************************
		**	技術資料
		*************************************************************************************/
		if(index == 2){
			topics_on("技術資料一覧","report/hproduct/index.html");
		}
		else{
			topics("技術資料一覧","report/hproduct/index.html");		
		}
		if(index == 2){
			child("テクニカルレポート","",2);
			grandchild("1996年度版","report/htech/technical1996.html","0","2");
			grandchild("1997年度版","report/htech/technical1997.html","0","2");
			grandchild("1998年度版","report/htech/technical1998.html","0","2");
			grandchild("1999年度版","report/htech/technical1999.html","0","2");
			grandchild("2000年度版","report/htech/technical2000.html","0","2");
			grandchild("2001年度版","report/htech/technical2001.html","0","2");
			grandchild("2002年度版","report/htech/technical2002.html","0","2");
			grandchild("2003年度版","report/htech/technical2003.html","0","2");
			grandchild("2004年度版","report/htech/technical2004.html","0","2");
			grandchild("2005年度版","report/htech/technical2005.html","0","2");
			grandchild("2006年度版","report/htech/technical2006.html","0","2");
			grandchild("2007年度版","report/htech/technical2007.html","0","2");
			grandchild("2008年度版","report/htech/technical2008.html","0","2");
			grandchild("2009年度版","report/htech/technical2009.html","0","1");

			child("投稿論文","",2);
			grandchild("1995年度版","report/htech/thesis1995.html","0","2");
			grandchild("1996年度版","report/htech/thesis1996.html","0","2");
			grandchild("1997年度版","report/htech/thesis1997.html","0","2");
			grandchild("1998年度版","report/htech/thesis1998.html","0","2");
			grandchild("1999年度版","report/htech/thesis1999.html","0","2");
			grandchild("2000年度版","report/htech/thesis2000.html","0","2");
			grandchild("2001年度版","report/htech/thesis2001.html","0","2");
			grandchild("2002年度版","report/htech/thesis2002.html","0","2");
			grandchild("2003年度版","report/htech/thesis2003.html","0","2");
			grandchild("2004年度版","report/htech/thesis2004.html","0","2");
			grandchild("2005年度版","report/htech/thesis2005.html","0","2");
			grandchild("2006年度版","report/htech/thesis2006.html","0","2");
			grandchild("2007年度版","report/htech/thesis2007.html","0","1");

			child("製品の技術情報","",1);
			
			grandchild("ナノ粒子(超微粒子)<br>関連","report/hproduct/index.html#particle","","2");
			grandchild("機能性塗料関連","report/hproduct/index.html#paint","","2");
			grandchild("機能性フィルム関連","report/hproduct/index.html#film","","2");
			
			grandchild("静電チャック","report/hproduct/index.html#chuck","","2");
			grandchild("SiCヒーター","report/hproduct/index.html#sicheater","","2");
			grandchild("SiCセラミックス部品","report/hproduct/index.html#ceramics","","2");
			
			grandchild("抗菌剤","report/hproduct/index.html#am15","","1");
			document.write('<img src="' + path + 'img/null.gif" width="1" height="5" border="0"><br>');
		}
		/************************************************************************************
		**
		**	展示会情報
		**
		*************************************************************************************/
		
		if(index == 4){
			topics_on("展示会情報","event/index.html");
		}
		else{
			topics("展示会情報","event/index.html");
		}
		if(index == 4){
			child("展示会情報一覧","event/index.html",1);
			document.write('<img src="' + path + 'img/null.gif" width="1" height="5" border="0"><br>');
		}
		/************************************************************************************
		**	技術の宝箱
		*************************************************************************************/
		if(index == 5){
			topics_on("技術の宝箱","techbox/hproduct/index.html");
		}
		else{
			topics("技術の宝箱","techbox/hproduct/index.html");
		}
		if(index == 5){
			child("ナノ粒子とは？","techbox/hproduct/ultrafine.html",2);
			child("光通信とは？","techbox/hproduct/opto.html",1);
			document.write('<img src="' + path + 'img/null.gif" width="1" height="5" border="0"><br>');
		}
		/************************************************************************************
		**	過去トピックス
		*************************************************************************************/
		if(index == 6){
			topics_on("過去トピックス","news/hsupport/index.html");
		}
		else{
			topics("過去トピックス","news/hsupport/index.html");
		}
		if(index == 6){
		}
		/************************************************************************************
		**	動画配信
		*************************************************************************************/
		topics("動画配信","bb/hproduct/index.html");
		/************************************************************************************
		**	お問い合わせ
		*************************************************************************************/
		
		if(index == 7){
			topics_on("お問い合わせ","cgi-bin/contact/contact_form.cgi?lang=0001");
		}
		else{
			topics("お問い合わせ","cgi-bin/contact/contact_form.cgi?lang=0001");
		}
		if(index == 7){
		}
		document.write('		</td>');
		document.write('		</tr>');
		document.write('		</table>');
		/*枠*/
		document.write('</td>');
		document.write('</tr>');
		document.write('</table>');
		document.close();
	}else{
		/*枠*/
		document.write('<table border="0" cellpadding="0" cellspacing="0" width="186" background="' + path + 'img/2008img/submenu_bk.gif">');
		document.write('<tr>');
		document.write('<td width="186" align="center" valign="middle">');
		document.write('	<img src="' + path + 'img/2008img/submenu_menu.gif" width="186" height="20" border="0"><br>');
		document.write('<td>');
		document.write('<tr>');
		document.write('<td>');
		/*メニュー*/
		document.write('		<table border="0" cellpadding="0" cellspacing="0" width="186" bgcolor="#FFFEDF"');
		document.write('		<tr>');
		document.write('		<td width="186" align="center" valign="middle">');
		/************************************************************************************
		**	製品案内
		*************************************************************************************/
		//topics_on1a("製品情報一覧","product/hproduct/index.html");
		link = "product/hproduct_e/index.html";
		document.write('<table border="0" cellpadding="0" cellspacing="0" width="186" background="' + path + 'img/2008img/submenu_menu_bk_seihin.gif">');
		document.write('<tr>');
		document.write('<td align="left" valign="middle">');
		document.write('<a href="' + path + link + '">');
		if(index == 0){
			document.write('<img src="' + path + '' + path + 'img/2008img/submenu_menu_bk_0_on_e.gif" border="0"><br>');
		}
		else{
			document.write('<img src="' + path + '' + path + 'img/2008img/submenu_menu_bk_0_off_e.gif" border="0"><br>');			
		}
		document.write('</a>');
		document.write('</td>');
		document.write('</tr>');
		document.write('</table>');
		/************************************************************************************
		/************************************************************************************
		**	カテゴリから探す
		*************************************************************************************/
		//topics_on1a("製品情報一覧","product/hproduct/index.html");
		link = "product/hproduct_e/index2.html";
		document.write('<table border="0" cellpadding="0" cellspacing="0" width="186" background="' + path + 'img/2008img/submenu_menu_bk_seihin.gif">');
		document.write('<tr>');
		document.write('<td align="left" valign="middle">');
		document.write('<a href="' + path + link + '">');
		if(index == 1){
			document.write('<img src="' + path + '' + path + 'img/2008img/submenu_menu_bk_1_on_e.gif" border="0"><br>');
		}
		else{
			document.write('<img src="' + path + '' + path + 'img/2008img/submenu_menu_bk_1_off_e.gif" border="0"><br>');			
		}
		document.write('</a>');
		document.write('</td>');
		document.write('</tr>');
		document.write('</table>');

		if(index == 1){
			child("Nanotechnology-related Materials","",2);
			grandchild("Ultrafine Particles","product/hproduct_e/ultrafine.html","0","2");
			grandchild("Zirconium Oxide:Nano-particle Dispersion","product/hproduct_e/ad_nanomenu.html","0","2");
			grandchild("Functional Coatings","product/hproduct_e/coating.html","0","2");
			grandchild("Functional Films","product/hproduct_e/film.html","0","1");

			child("Hygienic Materials","",2);
			grandchild("Antibacterial Agents","product/hproduct_e/antibacterial.html","0","2");
			grandchild("Easy Clean","product/hproduct_e/ad_easymenu_e.html","0","1");

			child("Optical Communication-related Products","",1);
			grandchild("LN Modulator","product/hproduct_e/ln.html","","1");

		}
		/************************************************************************************
		**	事業部案内
		*************************************************************************************/
		if(index == 3){
			topics_on("Divisional Infomation","division/hproduct_e/index.html");
		}
		else{
			topics("Divisional Infomation","division/hproduct_e/index.html");
		}
		if(index == 3){

			// 新材料事業
			child("Advanced Materials","division/hproduct_e/material.html",2);

			// 光電子事業
			child("Optoelectronics","division/hproduct_e/opto.html",2);
			grandchild("FAQ","division/hproduct_e/opto_faq.html","0","1");

			// 新規技術研究所
			child("R&D","division/hproduct_e/laboratory.html",2);
			grandchild("Optoelectronic Research Group","division/hproduct_e/labo_opto.html","0","2");
			grandchild("Advanced Material Research Group","division/hproduct_e/labo_mate.html","0","2");
			grandchild("Assay","division/hproduct_e/assay.html","0","1");
			child("History","division/hproduct_e/history.html",2);
			child("Group Companies","division/hproduct_e/company.html",1);
		}
		/************************************************************************************
		**	技術資料
		*************************************************************************************/
		if(index == 2){
			topics_on("Technical Reports","report/hproduct_e/index.html");
		}
		else{
			topics("Technical Reports","report/hproduct_e/index.html");
		}
		if(index == 2){
			child("Technical Reports","",2);
			grandchild("Technical Report1998","report/htech_e/technical1998.html","0","2");
			grandchild("Technical Report1999","report/htech_e/technical1999.html","0","2");
			grandchild("Technical Report2000","report/htech_e/technical2000.html","0","2");
			grandchild("Technical Report2001","report/htech_e/technical2001.html","0","2");
			grandchild("Technical Report2002","report/htech_e/technical2002.html","0","2");
			grandchild("Technical Report2003","report/htech_e/technical2003.html","0","2");
			grandchild("Technical Report2004","report/htech_e/technical2004.html","0","2");
			grandchild("Technical Report2005","report/htech_e/technical2005.html","0","1");

			child("LN Modulator Thesis","",2);
			grandchild("Thesis1995","report/htech_e/thesis1995.html","0","2");
			grandchild("Thesis1996","report/htech_e/thesis1996.html","0","2");
			grandchild("Thesis1997","report/htech_e/thesis1997.html","0","2");
			grandchild("Thesis1998","report/htech_e/thesis1998.html","0","2");
			grandchild("Thesis1999","report/htech_e/thesis1999.html","0","2");
			grandchild("Thesis2000","report/htech_e/thesis2000.html","0","2");
			grandchild("Thesis2001","report/htech_e/thesis2001.html","0","2");
			grandchild("Thesis2002","report/htech_e/thesis2002.html","0","2");
			grandchild("Thesis2003","report/htech_e/thesis2003.html","0","2");
			grandchild("Thesis2004","report/htech_e/thesis2004.html","0","2");
			grandchild("Thesis2005","report/htech_e/thesis2005.html","0","2");
			grandchild("Thesis2006","report/htech_e/thesis2006.html","0","2");
			grandchild("Thesis2007","report/htech_e/thesis2007.html","0","1");

			child("Product Reports","",1);
			grandchild("Zinc Oxide Products for Surface Coating","report/hproduct_e/index.html#zincoxide","","2");
			grandchild("SUMICEFINE<SUP>&reg;</SUP>","report/hproduct_e/index.html#fine","","2");
			grandchild(" Antibacterial Agents","report/hproduct_e/index.html#am15","","2");
			grandchild("CLEARAS<SUP>&reg;</SUP>","report/hproduct_e/index.html#clearas","","2");
			grandchild("RAY-BARRIER<SUP>&reg;</SUP>","report/hproduct_e/index.html#raybarrier","","1");
		}
		/************************************************************************************
		**
		**	展示会情報
		**
		*************************************************************************************/
		if(index == 4){
			topics_on("Exhibition Infomation","event_e/index.html");
		}
		else{
			topics("Exhibition Infomation","event_e/index.html");
		}
		if(index == 4){
			child("Event Infomation","event_e/index.html",1);
		}
		/************************************************************************************
		**	技術の宝箱
		*************************************************************************************/
		if(index == 5){
			topics_on("Technical Box","techbox/hproduct_e/index.html");
		}
		else{
			topics("Technical Box","techbox/hproduct_e/index.html");
		}
		if(index == 5){

			child("What is nanoparticle?","techbox/hproduct_e/ultrafine.html",1);

		}
		/************************************************************************************
		**	過去トピックス
		*************************************************************************************/
		if(index == 6){
			topics_on("Topics in past","news_e/hsupport/index.html");
		}
		else{
			topics("Topics in past","news_e/hsupport/index.html");
		}
		if(index == 6){
		}
		/************************************************************************************
		**	お問い合わせ
		*************************************************************************************/
		if(index == 7){
			topics_on("Contact us","cgi-bin/contact/contact_form.cgi?lang=0002");
		}
		else{
			topics("Contact us","cgi-bin/contact/contact_form.cgi?lang=0002");
		}
		if(index == 7){
		}

		/************************************************************************************
		**
		**	展示会情報
		**
		*************************************************************************************/
		if(index == 8){
			topics_on("FAQ","");
		}
		else{
			topics("FAQ","");
		}
		if(index == 8){
		}
			child("Advanced Material","division/hproduct_e/material_faq.html",0);
			child("Optoelectronics","division/hproduct_e/opto_faq.html",1);
		document.write('</td>');
		document.write('</tr>');
		document.write('</table>');
		/*枠*/
		document.write('</td>');
		document.write('</tr>');
		document.write('</table>');
		document.close();
	}
}