var egsatelliteIdLinkCtrl = {
  base:null,
  idlink:function() {
    if (this.base == null) {
      this.base = location.href.match(/^https?:\/\/mall\.egsatellite\.jp\//) ? 'http://egsatellite.jp' : 'http://t41.egsatellite.jp';
    }
    return this.base;
  },
  letsgo:function(e, ps) {
    if (ps.p2 == '0') {
      e.href = ps.p3;
    }
    else {
      e.href = this.idlink() + '/point/idlink.do?p1=' + encodeURIComponent(ps.p1) + '&p2=' + encodeURIComponent(ps.p2) + '&p3=' + encodeURIComponent(ps.p3);
    }
    return true;
  },
  uriEncodeParameters:function(ps){
    return ps.collect(function(p){return p[0]+'='+encodeURIComponent(p[1]);}).join('&');
  }
};
 