// AZ-PR
amazon_ad_tag = "gerochan-22";
amazon_ad_width = "468";
amazon_ad_height = "60";
amazon_color_link = "006699";
amazon_ad_link_target = "new";

// クイックコピー(旧式用のために捕獲)
function quick_copy(url) {
	document.TBURL_F.TBURL_I.focus();
	document.TBURL_F.TBURL_I.select();
	window.clipboardData.setData("text", url);
	return;
}

// マルチバイト対応　文字列の長さを調べる
function mb_length (str) {
	str = escape (str);
	len = 0;
	i = 0;
	while (i < str.length) {
		if (str.charAt(i) == "%") {
			if (str.charAt(++i) == "u") {
				i += 3;
				len++;
			}
			i++;
		}
		len++;
		i++;
	}
	return len;
}
