var mobileClients=[
"midp",
"240x320",
"blackberry",
"netfront",
"nokia",
"panasonic",
"portalmmm",
"sharp",
"sie-",
"sonyericsson",
"symbian",
"windows ce",
"benq",
"mda",
"mot-",
"opera mini",
"philips",
"pocket pc",
"sagem",
"samsung",
"sda",
"sgh-",
"vodafone",
"xda",
"iphone",
"ipod"
];
function isMobileClient(userAgent) {
    try {
        userAgent=userAgent.toLowerCase();
        for (var i=0; i < mobileClients.length; i++) {
            if (userAgent.indexOf(mobileClients[i]) != -1) {
                return true;
            }
        }
    }
    catch (e) { 
    }
    return false;
}
function isThisBrowserMobileClient() {
    return isMobileClient(navigator.userAgent);
}
function redirectIfMobileClient() {
    try {
        if (isThisBrowserMobileClient()) {
            if (document.location.href.indexOf('nomobile') != -1) {
                document.cookie='nomobile';
                return;
            }
            if (document.cookie && document.cookie.indexOf('nomobile') != -1) {
                return;
            }
            document.location.href="http://m.agogo-records.com";
        }
    }
    catch (e) {
    }
}
