// JavaScript Document
<!--
function HanNum(motoText)
{
	han = "0123456789.,()<>-+&%ABCDEFGHIJKLMNOPQRSTUVWXYZ";
	zen = "OPQRSTUVWXDCij|{`abcdefghijklmnopqrstuvwxy";
	str = "";
	for (i=0; i<motoText.length; i++)
	{
		c = motoText.charAt(i);
		n = zen.indexOf(c,0);
		if (n >= 0) c = han.charAt(n);
		str += c;
	}
	return str;
}
function HanHen(motoText)
{
	han = "0123456789.,()<>-+&%ABCDEFGHIJKLMNOPQRSTUVWXYZNϊz`PkNϊz`PkF";
	zen = "OPQRSTUVWXDCij|{`abcdefghijklmnopqrstuvwxyytdbakng:";
	str = "";
	for (i=0; i<motoText.length; i++)
	{
		c = motoText.charAt(i);
		n = zen.indexOf(c,0);
		if (n >= 0) c = han.charAt(n);
		str += c;
	}
	return str;
}
// -->
