//************************** // verifica le condizioni sul tablet function DetectTablet(uagent, device, width, height, minWidth, minHeight ) { if (uagent.indexOf(device) > -1 ) { if( (width + height) >= (minWidth + minHeight) ) { return true; } } return false; } var mobileRedirectEnabled = "True"; var userAgent = "ccbot/1.0 (+http://www.commoncrawl.org/bot.html)"; var userMobileDevice = "unknown"; var screenResolutionWidth = screen.width; var screenResolutionHeight = screen.height; var jsArray = [ {device: 'ipad', width: 1024,height: 768, url:'http://www.sistema24pa.ilsole24ore.com/tablet' },{device: 'android', width: 1280,height: 800, url:'http://www.sistema24pa.ilsole24ore.com/tablet' }]; for(var j=0; j < jsArray.length; j++) { var check = DetectTablet (userAgent,jsArray[j].device , jsArray[j].width, jsArray[j].height, screenResolutionWidth, screenResolutionHeight); if ( check ) { window.location = jsArray[j].url; } }