bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if (bName == "Netscape" && bVer >= 4) { ver = 'n4'; }
else if (bName == "Netscape" && bVer == 3) { ver = 'n3'; }
else if (bName == "Netscape" && bVer == 2) { ver = 'n2'; }
else if (bName == "Microsoft Internet Explorer" && bVer >= 4) { ver = 'e4'; }
else if (bName == "Microsoft Internet Explorer" && bVer <= 3) { ver = 'e3'; }
else if (bName == "Opera" && bVer >= 6) { ver = 'o6'; }
else { ver = 'ot'; }

/*************************************/
/* 変数定義 */
/*************************************/

	var URL = new String();
	baseURL = 'http://www.yoshidacast.com'; 



/*************************************/
/* 画像定義 */


	var onImg = new Array();
	var offImg = new Array();

function defImgGmenu() {
/* 総合メニュー用画像定義 */
	defURL = 'http://www.yoshidacast.com';
	for( t=0; t<=5; t++ ) {
			fname = 'gm' + t;
			onImg[fname] = new Image();
			onImg[fname].src = defURL + '/img/b_' + fname + '_on.gif';
			offImg[fname] = new Image();
			offImg[fname].src = defURL + '/img/b_' + fname + '.gif';
	}
}

function defImgLmenu() {
/* 詳細メニュー用画像定義 */
	defURL = 'http://www.yoshidacast.com';
	for( t=1; t<=8; t++ ) {
			fname = 'lm' + t;
			onImg[fname] = new Image();
			onImg[fname].src = defURL + '/img/b_' + fname + '_on.gif';
			offImg[fname] = new Image();
			offImg[fname].src = defURL + '/img/b_' + fname + '.gif';
	}
}

function defImgHome() {
/* ホーム PRODUCTS用画像定義 */
	defURL = 'http://www.yoshidacast.com/home';
	var treeNum = new Array(0, 3,3,0,2,5,8,4,2,2,4,2,3,0,3 );
	for( t=1; t<=treeNum.length; t++ ) {
		for( i=0; i<=treeNum[i]; i++ ) {
			fname = 'pm' + t + '_' + i;
			onImg[fname] = new Image();
			onImg[fname].src = defURL + '/b_' + fname + '_on.gif';
			offImg[fname] = new Image();
			offImg[fname].src = defURL + '/b_' + fname + '.gif';
		}
	}
}

function defImgLostwax() {
/* ロストワックス鋳造 関連機器用画像定義 */
	defURL = 'http://www.yoshidacast.com/products/lostwax';
	var treeNum = new Array(0, 3,3,3,3,3,3,3 );
	for( t=1; t<=treeNum.length; t++ ) {
		for( i=0; i<=treeNum[i]; i++ ) {
			fname = 'lwe' + t + '_' + i;
			onImg[fname] = new Image();
			onImg[fname].src = defURL + '/img/b_' + fname + '.gif';
			offImg[fname] = new Image();
			offImg[fname].src = defURL + '/img/b_lwe_' + i + '.gif';
		}
	}
}

function defImgCasting() {
/* 鋳造機 ページ内リンク用画像定義 */
	defURL = 'http://www.yoshidacast.com/products/casting';
	/* 貴金属鋳造機 */
	for( t=1; t<=3; t++ ) {
			fname = 'jcm' + t;
			onImg[fname] = new Image();
			onImg[fname].src = defURL + '/img/b_' + fname + '_on.gif';
			offImg[fname] = new Image();
			offImg[fname].src = defURL + '/img/b_' + fname + '.gif';
	}
	/* チタン鋳造機 */
	for( t=1; t<=3; t++ ) {
			fname = 'tcm' + t;
			onImg[fname] = new Image();
			onImg[fname].src = defURL + '/img/b_' + fname + '_on.gif';
			offImg[fname] = new Image();
			offImg[fname].src = defURL + '/img/b_' + fname + '.gif';
	}
}

function defImgProcesslw() {
/* 鋳造手順用画像定義 */
	defURL = 'http://www.yoshidacast.com/process/lw';
	for( t=1; t<=9; t++ ) {
			fname = 'plw' + t;
			onImg[fname] = new Image();
			onImg[fname].src = defURL + '/img/b_' + fname + '_on.jpg';
			offImg[fname] = new Image();
			offImg[fname].src = defURL + '/img/b_' + fname + '.jpg';
	}
}

function defImgPage() {
/* 個別ページ */
/* JAR-80 */
	defURL = 'http://www.yoshidacast.com/products/lostwax/remove';
	onImg['jar80shoot'] = new Image();
	onImg['jar80shoot'].src = defURL + '/jar-80_shoot_on.jpg';
	offImg['jar80shoot'] = new Image();
	offImg['jar80shoot'].src = defURL + '/jar-80_shoot.jpg';

/* POURING */
	defURL = 'http://www.yoshidacast.com/products/melting/mgp';
	onImg['crucible'] = new Image();
	onImg['crucible'].src = defURL + '/crucible_on.jpg';
	offImg['crucible'] = new Image();
	offImg['crucible'].src = defURL + '/crucible.jpg';
}


function defImg() {
	if( location.href.indexOf( '/home', 0 ) != -1 ) {
		defImgGmenu();
		defImgHome();
	} else if( location.href.indexOf( '/faq', 0 ) != -1 ) {
		defImgGmenu();
	} else if( location.href.indexOf( '/products/lostwax/index.html', 0 ) != -1 ) {
		defImgGmenu();
		defImgLostwax();
	} else if( location.href.indexOf( '/products/casting', 0 ) != -1 ) {
		defImgGmenu();
		defImgLmenu();
		defImgCasting();
	} else if( location.href.indexOf( '/process/lw', 0 ) != -1 ) {
		defImgLmenu();
		defImgProcesslw();
	} else {
		defImgGmenu();
		defImgLmenu();
		defImgPage();
	}
}



/*************************************/
/* 関数定義 */
/*************************************/

function np( PATH, STR ) {
/* 現在閲覧しているページと PATH を調べ、同じならば STR を返します */
	check = location.href.indexOf( PATH, 0 );
	if( check != -1 ) {
		insStr = STR;
	} else {
		insStr = '';
	}
	return insStr;
}



function openWin( FILE, X, Y ) {
/* FILE で指定したファイルを                        */
/* width:X, height:Y で新しいウィンドウで開きます。 */
/* ウィンドウはステータスバー等が表示されません。   */
	STATUS = new String;

	STATUS =
	'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,marginwidth=0,marginheight=0,width='+X+',height='+Y;

	opWin = window.open( FILE, "new", STATUS );
}





/*************************************/
/* 動作定義 */

function switchImg( CATEGORY, MODE ) {
/* 画像の上にマウスカーソルを乗せたときに画像を変更します。 */
	if( ver != 'ot' ) {
	switch( MODE ) {
		case 'over':
			document.getElementById(CATEGORY).src = onImg[CATEGORY].src;
			break;
		case 'out':
			document.getElementById(CATEGORY).src = offImg[CATEGORY].src;
			break;
	}
	return true;
	}
}



function toggleMenu(mID) {
/* クリックする毎にメニューを表示／非表示します。 */
	flag = document.getElementById(mID).style.visibility;
	if( flag == "visible" ) {
		resetMenu();
		document.getElementById(mID).style.visibility = "hidden";
		document.getElementById(mID).style.display = "none";
	} else {
		resetMenu();
		document.getElementById(mID).style.visibility = "visible";
		document.getElementById(mID).style.display = "block";
	}
}



function resetMenu() {
/* ホームページのメニューを閉じた状態にします。 */
	if ( ver != 'n4' ) {
		for( i=1; i<=14; i++ ) {
			rID = 'pm' + i;
			document.getElementById(rID).style.visibility = "hidden";
			document.getElementById(rID).style.display = "none";
		}
	}
}





/*************************************/
/* 文字列定義 */

function infTF() {
/* 文字列を定義します */

	strTFif = new String();
	strTFi1a = new String();
	strTFi2a = new String();
	strTFi2b = new String();
	strTFie = new String();

	strTF2f = new String();
	strTF21 = new String();
	strTF2e = new String();

	strTF3f = new String();
	strTF31 = new String();
	strTF32 = new String();
	strTF3e = new String();


	/* TABLE FRAME (index) */
	strTFif = '';


	/* TABLE FRAME (type2) */
	strTF2f = '';

	strTF2e = '';


	/* TABLE FRAME (type3) */
	strTF3f = '';
}


function infStrM() {
	strGMenu1 = new String();
	strGMenu2 = new String();
	strGMenu3 = new String();
	strGMenu = new String();
	strGMenuHome = new String();
	strLMenu = new String();
	strSubNav = new String();

	strGMenu1 =
	'<DIV id="gmenu">'+
	'<H2><IMG alt="MENU" src="' + baseURL + '/img/h_menu.gif" width="138" height="36"></H2>';

	strGMenu2 =
	'<DIV class="gmenub">'+
	'<H3><IMG alt="" src="' + baseURL + '/img/b_home.gif" width="40" height="33"></H3>'+
	'<P>ホームに戻る</P>'+
	'<P><A href="' + baseURL + '/home/"><IMG alt="HOME" src="' + baseURL + '/img/b_gm0.gif" width="120" height="33" id="gm0" onMouseOver="switchImg(\'gm0\',\'over\');" onMouseOut="switchImg(\'gm0\',\'out\');" border="0"></A></P>'+
	'</DIV>';

	strGMenu3 =
	'<DIV class="gmenub">'+
	'<H3>ちょっと下調べ</H3>'+
	'<P>吉田キャスト工業とは？</P>'+
	'<P><A href="' + baseURL + '/company/outline.html"><IMG alt="COMPANY" src="' + baseURL + '/img/b_gm1.gif" width="120" height="33" id="gm1" onMouseOver="switchImg(\'gm1\',\'over\');" onMouseOut="switchImg(\'gm1\',\'out\');" border="0"></A></P>'+
	'</DIV>'+
	''+
	'<DIV class="gmenub">'+
	'<H3>どんな構成なのか？</H3>'+
	'<P>サイト全体を見渡してみる</P>'+
	'<P><A href="' + baseURL + '/home/index_map.html"><IMG alt="SITE MAP" src="' + baseURL + '/img/b_gm2.gif" width="120" height="33" id="gm2" onMouseOver="switchImg(\'gm2\',\'over\');" onMouseOut="switchImg(\'gm2\',\'out\');" border="0"></A></P>'+
	'</DIV>'+
	''+
	'<DIV class="gmenub">'+
	'<H3>小型機・消耗材料・器具・工具 等</H3>'+
	'<P>価格を見る・すぐ必要なものを購入</P>'+
	'<P><A href="' + baseURL + '/shop/index.html"><IMG alt="NET SHOP" src="' + baseURL + '/img/b_gm3.gif" width="120" height="33" id="gm3" onMouseOver="switchImg(\'gm3\',\'over\');" onMouseOut="switchImg(\'gm3\',\'out\');" border="0"></A></P>'+
	'</DIV>'+
	''+
	'<DIV class="gmenub">'+
	'<H3>漠然とした質問どんな事でも!</H3>'+
	'<P>質問はこちらから</P>'+
	'<P><A href="http://www.yoshidacast.com/support/faq/index.html"><IMG alt="FAQ" src="' + baseURL + '/img/b_gm4.gif" width="120" height="33" id="gm4" onMouseOver="switchImg(\'gm4\',\'over\');" onMouseOut="switchImg(\'gm4\',\'out\');" border="0"></A></P>'+
	'</DIV>'+
	''+
	'<DIV class="gmenub">'+
	'<H3>鋳造工場・中古機械を探している!!</H3>'+
	'<P>何でも書き込み</P>'+
	'<P><A href="http://www.yoshidacast.com/cgi-bin/bbs/bbs.cgi"><IMG alt="BBS" src="' + baseURL + '/img/b_gm5.gif" width="120" height="33" id="gm5" onMouseOver="switchImg(\'gm5\',\'over\');" onMouseOut="switchImg(\'gm5\',\'out\');" border="0"></A></P>'+
	'</DIV>'+
	''+
	'<DIV class="gmenutop">'+
	'<P><A href="#">TOPへ戻る<BR>'+
	'<IMG alt="" src="' + baseURL + '/img/b_top.gif" width="56" height="34"></A></P>'+
	'</DIV>'+
	'</DIV>';

	strGMenu = strGMenu1 + strGMenu2 + strGMenu3;
	strGMenuHome = strGMenu1 + strGMenu3;


	strLMenu =
	'<DIV id="lmenu">'+
	'<H2><IMG alt="MENU" src="' + baseURL + '/img/h_lmenu.gif" width="138" height="36"></H2>'+
	'<P><A href="' + baseURL + '/home/index.html"><IMG alt="HOME" src="' + baseURL + '/img/b_lm1.gif" width="139" height="40" id="lm1" onMouseOver="switchImg(\'lm1\',\'over\');" onMouseOut="switchImg(\'lm1\',\'out\');" border="0"></A><BR>'+
	'<A href="' + baseURL + '/home/index_map.html"><IMG alt="SITE MAP" src="' + baseURL + '/img/b_lm2.gif" width="139" height="40" id="lm2" onMouseOver="switchImg(\'lm2\',\'over\');" onMouseOut="switchImg(\'lm2\',\'out\');" border="0"></A><BR>'+
	'<A href="http://www.yoshidacast.com/support/faq/index.html"><IMG alt="FAQ" src="' + baseURL + '/img/b_lm3.gif" width="139" height="40" id="lm3" onMouseOver="switchImg(\'lm3\',\'over\');" onMouseOut="switchImg(\'lm3\',\'out\');" border="0"></A><BR>'+
	'<A href="' + baseURL + '/shop/index.html"><IMG alt="NET SHOP" src="' + baseURL + '/img/b_lm4.gif" width="139" height="40" id="lm4" onMouseOver="switchImg(\'lm4\',\'over\');" onMouseOut="switchImg(\'lm4\',\'out\');" border="0"></A><BR>'+
	'<A href="' + baseURL + '/products/casting/jcm.html"><IMG alt="CASTING MACHINES" src="' + baseURL + '/img/b_lm5.gif" width="139" height="40" id="lm5" onMouseOver="switchImg(\'lm5\',\'over\');" onMouseOut="switchImg(\'lm5\',\'out\');" border="0"></A><BR>'+
	'<A href="' + baseURL + '/products/lostwax/index.html"><IMG alt="RELATED MACHINES" src="' + baseURL + '/img/b_lm6.gif" width="139" height="40" id="lm6" onMouseOver="switchImg(\'lm6\',\'over\');" onMouseOut="switchImg(\'lm6\',\'out\');" border="0"></A><BR>'+
	'<A href="' + baseURL + '/library/index.html"><IMG alt="DATA LIBRARY" src="' + baseURL + '/img/b_lm7.gif" width="139" height="40" id="lm7" onMouseOver="switchImg(\'lm7\',\'over\');" onMouseOut="switchImg(\'lm7\',\'out\');" border="0"></A><BR>'+
	'<A href="' + baseURL + '/guidance/index.html"><IMG alt="GUIDANCE" src="' + baseURL + '/img/b_lm8.gif" width="139" height="40" id="lm8" onMouseOver="switchImg(\'lm8\',\'over\');" onMouseOut="switchImg(\'lm8\',\'out\');" border="0"></A></P>'+
	''+
/*	'<DIV class="gmenutop">'+
	'<P><A href="#">TOPへ戻る<BR>'+
	'<IMG alt="" src="' + baseURL + '/img/b_top.gif" width="56" height="34"></A></P>'+
	'</DIV>'+	*/
	'</DIV>';


	strSubNav =
	'<P class="subnav"><A href="#"><IMG alt="" src="' + baseURL + '/img/b_top.gif" width="56" height="34"><BR>TOPへ戻る</A></P>';

}

function infStrH() {
/* 文字列を定義します */

	strH = new String();
	strHh = new String();
	strHp = new String();
	strHs = new String();
	strHc = new String();
	strHi = new String();

	strCr = new String();


	/* HEADER (home) */
	strH =
	'<DIV class="h">'+
	'<H1 class="h" id="home">'+
	'<IMG alt="-Unification of Technology- Yoshida Cast" src="/images/logo.gif" width=230 height=35><BR>'+
	'</H1>'+
	'</DIV>';

	/* HEADER (std) */
	strHh =
	'';

	/* HEADER (products) */
	strHp =
	'';


	/* HEADER (support) */
	strHs =
	'';


	/* HEADER (community) */
	strHc =
	'';


	/* HEADER (info) */
	strHi =
	'';


	/* FOOTER (Copyright) */
	strCr =
	'<P class="copyright">'+
	'&copy; 2002 Yoshida Cast Industry Co., LTD.<BR>'+
	'</P>';


	/* JavaScript (window.close) */
	strJSwc =
	'<P class="nav">'+
	'<A href="javascript: window.close();">このウィンドウを閉じる</A><BR>'+
	'</P>';


	/* Acrobat Reader */
	strAr =
	'<P class="bannerar">'+
	'<A href="http://www.adobe.co.jp/products/acrobat/readstep.html">'+
	'<IMG alt="[Get Acrobat Reader]" src="/img/getacro.gif" width="88" height="31" border="0" class="right"></A>'+
	'本サイトではマニュアル等のファイルをPDF形式で提供しています。'+
	'PDF形式を閲覧するには Acrobat Reader が必要です。'+
	'お使いのPCに Acrobat Reader がインストールされていない場合、<A href="http://www.adobe.co.jp/products/acrobat/readstep.html">アドビ システムズ社のダウンロードページ</A>から Acrobat Reader を入手してください。<BR>'+
	'</P>';
}



function infStrE() {
/* 文字列を定義します */

	strEpjcm = new String();
	strEptcm = new String();
	strEplwi = new String();
	strEplwe = new String();
	strEpsp = new String();
	strEpcolorit = new String();
	strEs = new String();
	strEc = new String();
	strEi = new String();


	/* EXPLORER (Lostwax) */
	strEpjcm =
	'';


	/* EXPLORER (Titanium) */
	strEptcm =
	'';


	/* EXPLORER (Lostwax) */
	strEplwi =
	'<H2 class="e">'+
	'鋳造手順<BR>'+
	'</H2>'+
	'<OL class="enav">'+
	'	<LI><A href="./01.html"'+ np( '01.html', 'id=selected' ) +'>原型</A>'+
	'	<LI><A href="./02.html"'+ np( '02.html', 'id=selected' ) +'>ゴム型作製</A>'+
	'	<LI><A href="./03.html"'+ np( '03.html', 'id=selected' ) +'>ワックスパターン作製</A>'+
	'	<LI><A href="./04.html"'+ np( '04.html', 'id=selected' ) +'>ワックスツリーの組み立て</A>'+
	'	<LI><A href="./05.html"'+ np( '05.html', 'id=selected' ) +'>埋没</A>'+
	'	<LI><A href="./06.html"'+ np( '06.html', 'id=selected' ) +'>脱ロウ</A>'+
	'	<LI><A href="./07.html"'+ np( '07.html', 'id=selected' ) +'>焼型</A>'+
	'	<LI><A href="./08.html"'+ np( '08.html', 'id=selected' ) +'>鋳造</A>'+
	'	<LI><A href="./09.html"'+ np( '09.html', 'id=selected' ) +'>埋没材の除去</A>'+
	'	<LI><A href="./10.html"'+ np( '10.html', 'id=selected' ) +'>酸処理</A>'+
	'	<LI><A href="./11.html"'+ np( '11.html', 'id=selected' ) +'>型（鋳物）ばらし</A>'+
	'	<LI><A href="./12.html"'+ np( '12.html', 'id=selected' ) +'>研磨</A>'+
	'	<LI><A href="./13.html"'+ np( '13.html', 'id=selected' ) +'>表面処理</A>'+
	'</OL>';


	/* EXPLORER (LOST WAX EQUIPMENT) */
	strEplwe =
	'';

	/* EXPLORER (SURFACE PROCESSING) */
	strEpsp =
	'';


	/* EXPLORER (COLORIT) */
	strEpcolorit =
	strAr;


	/* EXPLORER (support) */
	strEs =
	'<P class="nav">'+
	'<A href="/support/faq/index.html">総合FAQ</A>'+
	'</P>'+
	'<P class="nav">ロストワックス鋳造:'+
	'<A href="/support/faq_scm/index.html">貴金属用小型鋳造機</A>, '+
	'<A href="/support/faq_mcm/index.html">貴金属用中型鋳造機</A>, '+
	'<A href="/support/faq_lcm/index.html">貴金属用大型鋳造機</A>, '+
	'<A href="/support/faq_tcm/index.html">チタン用鋳造機</A>, '+
	'<A href="/support/faq_lwe/index.html">関連器具・機材</A>'+
	'</P>'+
	'<P class="nav">加工・表面処理:'+
	'<A href="/support/faq_laser/index.html">レーザー機器</A>, '+
	'<A href="/support/faq_sp/index.html">表面処理機器</A>, '+
	'</P>';

	/* EXPLORER (community) */
	strEc =
	'<H3 class="e">'+
	'</H3>'+
	'<UL class="enav">'+
	'	<LI><A href="/cgi-bin/bbs/bbs.cgi">BBS</A>'+
	'	<LI><A href="/community/link.html">リンク</A>'+
	'</UL>';



	/* EXPLORER (info) */
	strEi =
	'<UL class="enav">'+
	'	<LI><A href="./greeting.html">ごあいさつ</A>'+
	'	<LI><A href="./office.html">社屋紹介</A>'+
	'	<LI><A href="./outline.html">会社概要</A>'+
	'	<LI><A href="./map.html">案内図</A>'+
	'	<LI><A href="./history.html">会社沿革</A>'+
	'</UL>';
}



function infNav() {
/* 文字列を定義します */

	strCOMPANY = new String();
	strESH5 = new String();
	strEVC1 = new String();
	strEVC2AS = new String();
	strEVP4A = new String();
	strLSW6002 = new String();
	strVBC50 = new String();
	strYGP2S = new String();
	strYGP5A = new String();
	strYGP7AD = new String();
	strYG2000 = new String();
	strYRC75 = new String();
	strYSE50T = new String();
	strYSE100T = new String();
	strYSE150T = new String();
	strMINI150 = new String();
	strCOLORIT = new String();
	strBOOKSJC = new String();
	strDUMMY = new String();

	strCOMPANY =
	'<P class="nav">'+
	'<A href="./greeting.html">ごあいさつ</A>・'+
	'<A href="./office.html">社屋紹介</A>・'+
	'<A href="./outline.html">会社概要</A>(<A href="./map.html">案内図</A>)・'+
	'<A href="./history.html">会社沿革</A>'+
	'</P>';


	strESH5 =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>'+
	'</P>';

	strEVC1 =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>'+
	'</P>';

	strEVC2AS =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>'+
	'</P>';

	strEVP4A =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>'+
	'</P>';

	strLSW6002 =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>'+
	'</P>';

	strVBC50 =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>・'+
	'<A href="./ver.html">２つのバージョン</A>'+
	'</P>';

	strYGP2S =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>・'+
	'<A href="/technology/df/index.html" target="_new">マルチタイプ鋳造</A>・'+
	'<A href="/technology/mr/index.html" target="_new">鋳型回転</A>'+
	'</P>';

	strYGP5AE =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>・'+
	'<A href="/technology/df/index.html" target="_new">マルチタイプ鋳造</A>・'+
	'<A href="/technology/mr/index.html" target="_new">鋳型回転</A>'+
	'</P>';

	strYGP7AD =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>・'+
	'<A href="./pressure.html">加圧鋳造</A>・'+
	'<A href="/technology/df/index.html" target="_new">マルチタイプ鋳造</A>・'+
	'<A href="/technology/mr/index.html" target="_new">鋳型回転</A>・'+
	'<A href="./display.html">液晶画面操作</A>'+
	'</P>';

	strYG2000 =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>'+
	'</P>';

	strYRC75 =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>'+
	'</P>';

	strYSE50T =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>・'+
	'<A href="./sample.html">キャストサンプル</A>'+
	'</P>';

	strYSE100T =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./sample.html">キャストサンプル</A>'+
	'</P>';

	strYSE150T =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>・'+
	'<A href="./sample.html">キャストサンプル</A>'+
	'</P>';

	strMINI150 =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>'+
	'</P>';

	strCOLORIT =
	'<P class="nav">'+
	'セット内容(<A href="../products/set_l.html">ラージセット</A>,'+
	'<A href="../products/set_s.html">スモールセット</A>)・<BR>'+
	'<!-- A href="../products/supply.html">消耗品リスト</A -->'+
	'資料(<A href="../works/index.html">作品集</A>,'+
	'<A href="../products/mixture.html">混色チャート</A>,'+
	'<A href="/pdf/colorit/manual.pdf"><IMG alt="PDF形式:" src="/img/pdficonsmall.gif" width=22 height=24 border=0>取扱説明書</A>)・'+
	'<A href="../products/application.html">解説と手順</A>'+
	'</P>';

	strBOOKSJC =
	'<DIV class="bannerbk">'+
	'<P><IMG alt="" src="/products/it/books/jc/p_jc.jpg" width="121" height="168" class="right">また、弊社監修による技術書、『ジュエリーキャスティングの基本と実際』／諏訪小丸著／定価&yen;3,780(税込み)でも詳しい情報をご提供しております。<BR class="clear"></P>'+
	'<P class="nav">この本の詳細をご覧になる場合には、<A href="/products/it/books/lostwax.html"><IMG alt="こちらから" src="/img/btn_kochira.gif" width="87" height="18"></A><BR class="clear"></P>'+
	'</DIV>';

	strDUMMY =
	'<P class="nav">'+
	'<A href="./index.html">製品概要</A>・'+
	'<A href="./spec.html">仕様</A>'+
	'</P>';
}


/* 初期実行 */

defImg();
infTF();
infStrM();
infStrH();
infStrE();
infNav();
