function iPhoneCheck() {
    var agent = navigator.userAgent.toLowerCase();
    var iphone = (agent.indexOf('iphone')!=-1);
	var android = (agent.indexOf('android')!=-1);
    if (iphone||android) {
        location.href="http://www.joeleos.com.br/mobile";
    } else {
     false;
    }
}
iPhoneCheck();
