// Mobile Browser Detection
var userAgentList = new RegExp(/(IEMobile|Windows CE|NetFront|PlayStation|PLAYSTATION|iPhone|iPod|MIDP|UP\.Browser|Symbian|Nintendo|Android|Danger|Palm|webOS)/i);
if (
	screen.height < 768
	&& screen.width < 768
	&& window.location.search.match('view=desktop') === null
	&& userAgentList.test(navigator.userAgent)
)
{
	window.location = '/mobile';
}
