// JavaScript Document
// copyright
function copy() {
	dd = new Date();
 yy = dd.getYear();
	if (yy < 2000) {
		yy += 1900; 
	}
 document.write("All rights reserved, Copyright &copy;1998-" + yy + ", The Nippon Synthetic Chemical Industry Co., Ltd.");
}

