(function(){	
  //get UserAgent
  var ua = navigator.userAgent;

  //shown confirm popup.
  if(	(ua.indexOf('iPhone', 0) != -1) && (ua.indexOf('iPod') == -1) && (ua.indexOf('iPad', 0) == -1)) {
    alert();
  }
  //include Android && mobile
  else if((ua.indexOf('Android', 0) != -1) && (ua.indexOf('Mobile', 0) != -1)) {
    alert();									
  }

  function alert() {
    var ret = confirm("【期間限定】M.シャプティエ\nペイ・ドック情報に移動しますか？");

    if(ret == true) {
      location.href = "http://chapoutier.rockbird.mobi/";
    }	
  }
})();
