//from mobile?
if(querySt("mobile") == false || querySt("mobile") == "false") {
//dont redirect, user requested full version
//set cookie so redirection doesnt happen
Set_Cookie( 'mobile', false, '', '/', '', '' );
} else

//ipad first
if(navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/1000/i) || navigator.userAgent.match(/9000/i) || navigator.userAgent.match(/m180/i) || navigator.userAgent.match(/t849/i) || navigator.userAgent.match(/i987/i) || navigator.userAgent.match(/tablet/i) || navigator.userAgent.match(/p100/i) || navigator.userAgent.match(/t849/i) || navigator.userAgent.match(/i800/i)) {

} else 

if ( navigator.userAgent.match(/(opera mini|ipod|iphone|up.browser|up.link|mmp|symbian|smartphone|midp|wap|vodafone|o2|pocket|kindle|mobile|psp|treo|nokia|blackberry|pre\/0.1|android)/i) &&  Get_Cookie('mobile') != 'false') {
 location.replace("http://m.timex.com");
} else

if (screen.width <= 699 && Get_Cookie('mobile') != 'false') {
 location.replace("http://m.timex.com");
}

