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