var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1;
var isIpad = ua.indexOf("ipad") > -1;
var isIphone = ua.indexOf("iphone") > -1;
if(isIphone) {
	window.location = 'http://tmsarch.co';
}
if(isIpad) {
	window.location = 'http://tmsarch.co';
}

