/* --------------------------------
	メール件名表示
-------------------------------- */

var mailto = {
	// 設定
	defaultCharset: document.charset,

	// メーラーを開く
	open: function(addr, opts) {
		if (this.isIE) document.charset = 'shift_jis';
		if (opts) addr += '?' + opts;
		location.href = addr;
		if (this.isIE) document.charset = this.defaultCharset;
	},

	// IE判定フラグ
	isIE: /msie ([0-9]+)/.test(navigator.userAgent.toLowerCase())
}

