var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1; 
var isPhone = ua.indexOf("iphone") > -1; 
var isPod = ua.indexOf("isPod") > -1; 
if(isAndroid || isPod || isPhone) {
    window.location = 'http://neevtech.com/m';
}

