﻿var qs = location.search;
if (qs.indexOf('site=normal') == -1) {
    if (checkmobile(navigator.userAgent.toLowerCase()) == true) { location.href = "/Mobile/"; }
}

function checkmobile(nameApp) {
    browser_list = new Array("iphone", "android", "opera mini", "opera mobi", "palmos", "palmsource", "windows ce", "blackberry", "windows mobile", "symbian", "nokia", "htc", "pocket", "palm");

    for (i = 0; i < browser_list.length; i++) {
        if (nameApp.indexOf(browser_list[i]) != -1) return true;
    }
    return false;
}
