// JavaScript Document
//iPhoneまたはAndroidの場合は振り分けを判断

if (document.referrer.indexOf('afford.co.jp/') == -1 && ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') ==-1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0 )) {

	if(confirm('スマートフォンサイトに移動しますか？')) { 
		location.href='http://www.afford.co.jp/smart/index.html';
}
}

