

// iPhoneまたは、Androidの場合は振り分けを判断
var ref_url = "http://www.gocoh.co.jp/iphone/";
var location_url_phone = "http://www.gocoh.co.jp/iphone/index.html";
var location_url_pc = "http://www.gocoh.co.jp/";


if(document.referrer.indexOf(ref_url) == -1 && ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0)){
  location.href = location_url_phone;
}

/*
if(document.referrer.indexOf(ref_url) == -1 && ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0)){
  if(confirm('五光印刷のスマートフォン用WEBサイトです。\nスマートフォン用のサイトを表示しますか？')){
    location.href = location_url_phone;
  }
}
*/

/*
if((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0) {
  location.href = location_url_phone;
}
*/

