//設定Mobile的定義(全小寫)
var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate", "bada", "nokia", "lg", "ucweb", "skyfire");
//讀取用戶的瀏覽器資料
var browser = navigator.userAgent.toLowerCase();
var isMobile = false;
 
//檢查開始
for (var i=0; i<mobileAgent.length; i++){
    if (browser.indexOf(mobileAgent[i])!=-1){
        isMobile = true;
        //alert(mobileAgent[i]);
        //程式碼(轉址)
        location.href = 'http://www.cek.com.tw/m/index.html';
        //停止運行迴圈
        break;
    }
}

