//-- GP4以下用です --
// PLIMO設定
// ここにPLIMOのURLを記述する
var smart_url = "http://toughlife.plimo.jp/";
Event.observe(window, "load", function(){
	new Insertion.Before("wrapper", '<div class="SPRidirect"><a href="' + smart_url + '"><img src="/images/smart.png" /></a></div>');
}, false);
if (navigator.userAgent.indexOf('iPhone') > 0 || navigator.userAgent.indexOf('Android') > 0){
	Event.observe(window, "load", insert_sphone_link, false);
	function insert_sphone_link(){
		new Insertion.Before("wrapper", '<div class="SPRidirect"><a href="' + smart_url + '"><img src="/images/smart.jpg" /></a></div>');
		var manager = new CookieManager({shelfLife:1});
		var link_mode = manager.getCookie("link_mode");
		if(!link_mode){
			if(confirm('このサイトにはスマートフォン用のサイトがあります。「OK」でスマートフォンサイトを表示し、「キャンセル」でPCサイトを表示します。')) {
				location.href = smart_url;
				manager.setCookie("link_mode", 'sphone');
			}else{
				manager.setCookie("link_mode", 'pc');
			}
		}else{
			if(link_mode != 'pc'){
				location.href = smart_url;
			}
		}
	}
	// CookieManager Object
	var _BROWSER_IS_IE=document.all&&window.ActiveXObject&&navigator.userAgent.toLowerCase().indexOf("msie")>-1&&navigator.userAgent.toLowerCase().indexOf("opera")==-1;var _BROWSER_IS_OPERA=navigator.userAgent.toLowerCase().indexOf("opera")!=-1;CookieManager=Class.create();CookieManager.prototype={userDataForIE:false,initialize:function(a){this.cookieShelfLife=365;this.userDataForIE=a;if(_BROWSER_IS_IE&&this.userDataForIE){this.IE_CACHE_NAME="storage";if($(this.IE_CACHE_NAME)==null){var b=document.createElement("DIV");b.id=this.IE_CACHE_NAME;document.body.appendChild(b)}this.store=$(this.IE_CACHE_NAME);this.store.style.behavior="url('#default#userData')"}},getCookie:function(a){var b=null;if(_BROWSER_IS_IE&&this.userDataForIE){this.store.load(this.IE_CACHE_NAME);b=this.store.getAttribute(a)}else{for(var c=0;c<document.cookie.split("; ").length;c++){var d=document.cookie.split("; ")[c].split("=");if(d[0]==a&&d[1]!=null){b=d[1];break}}}if(_BROWSER_IS_OPERA&&b!=null){b=b.replace(/%22/g,'"')}return b},setCookie:function(a,b){if(_BROWSER_IS_IE&&this.userDataForIE){this.store.setAttribute(a,b);this.store.save(this.IE_CACHE_NAME)}else{if(_BROWSER_IS_OPERA){b=b.replace(/"/g,"%22")}var c=new Date;c.setTime(c.getTime()+this.cookieShelfLife*24*60*60*1e3);var d="; expires="+c.toGMTString();document.cookie=a+"="+b+d+"; path=/"}},clearCookie:function(a){if(_BROWSER_IS_IE&&this.userDataForIE){this.store.load(this.IE_CACHE_NAME);this.store.removeAttribute(a);this.store.save(this.IE_CACHE_NAME)}else{document.cookie=a+"=;expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/"}}};
	
}


