/**
 *
 * bb_detect.js - This script is used to detect the Blackberry platform
 *
 */
var isBlackberryBrowser = (function() {
    if (navigator.platform === 'Blackberry') {
        return true;
    } else {
        return false;
    }
})();
