// JavaScript Document
// ナビゲーションガイド
function changeGuide(guideID,disp) {
 if (document.getElementById(guideID)) {
	 document.getElementById(guideID).style.display = disp;
	}
}
// copyright
function copy() {
 document.write('All rights reserved, Copyright &copy;1998-2007, The Nippon Synthetic Chemical Industry Co., Ltd.');
}
// お問い合わせ先（/application/***.html）
function contact01() {
 document.write('日本合成化学工業株式会社　ソアノール部<br />');
 document.write('Tel：東京03-3564-7009　大阪06-6440-5313<br />');
 document.write('<a href="https://www.soarnol.com/eng/contact/index.html">メールでのお問い合わせ</a>');
}
