// JavaScript Document

// alert(navigator.userAgent.toLowerCase());

//if (screen.width <= 699) {
//document.location = "../../../../mobile/index.html";
//}


//if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
//   location.replace("../../../../mobile/index.html");
//}

// FOR ALL MOBILE DEVICES 
// CHANGE LOCATION.REPLACE location
 var redirectagent = navigator.userAgent.toLowerCase();
 var redirect_devices = ['symbian', 'nokia', 'samsung', 'windows ce','blackberry', 'palm',  'palmsource','smartphone', 'ipaq','iphone','ipod', 'android', 'htc', 'dream', 'webos'];
 for (var i in redirect_devices) {
 if (redirectagent.indexOf(redirect_devices[i]) != -1) {
 location.replace("../../../../mobile/index.html");
 }
}
