/*
 * smartphone_link.js
 *
 * - スマートフォン版へのリンクタグ（html）定義
 * - ユーザの UserAgent 取得
 */
(function(){
  // UserAgent 判定処理
if ((navigator.userAgent.indexOf('iPhone') > -1 && navigator.userAgent.indexOf('iPad') == -1)  || (navigator.userAgent.indexOf('Android') > -1 && navigator.userAgent.indexOf('Mobile') > -1 )) {
     tag = '<a href="javascript:void(0)" onClick="cf_click_smartphone()"><img src="http://www.bellemaison.jp/xtra/smart/smart_img/smartphone.jpg" alt="スマートフォンで商品が探しやすくなりました♪" title="スマートフォンで商品が探しやすくなりました♪" width="950" height="300" border="0"></a>'
      document.write(tag);
}
})();

function cf_click_smartphone(){
  // Cookie を削除して再読み込み
  document.cookie = "SCREENKBN=; expires=Tue, 01 Jan 1970 00:00:00 GMT; domain=.bellemaison.jp; path=/;";
  window.location.reload();
}

