<!--
// JavaScript Document
var addListener = function(elm, type, func) {
	if (! elm) {
		return false;
	}
	/* W3C準拠ブラウザ用 */
	if(elm.addEventListener) {
		elm.addEventListener(type, func, false);
	/* Internet Explorer用 */
	} else if(elm.attachEvent) {
		elm.attachEvent('on'+type, func);
	} else {
		return false;
	}
	return true;
};
//-->
