﻿if(navigator.userAgent.toUpperCase().indexOf("IEMOBILE") != -1)
{
	window.location = "/windowsmobile/mobile/default.aspx";
}
else if(navigator.userAgent.toUpperCase().indexOf("PPC") != -1)
{
	if(navigator.userAgent.toUpperCase().indexOf("MACINTOSH") == -1)
	{
		window.location = "/windowsmobile/mobile/default.aspx";
	}
	else
	{
		window.location = "/windowsmobile/mobile/pocketpc/default.aspx";
	}
}
else if(navigator.userAgent.toUpperCase().indexOf("SMARTPHONE") != -1)
{
	window.location = "/windowsmobile/mobile/smartphone/default.aspx";
}
else if(navigator.userAgent.toUpperCase().indexOf("WINDOWS CE") != -1)
{
	window.location = "/windowsmobile/mobile/default.aspx";
}
else if(navigator.userAgent.toUpperCase().indexOf("PALMOS") != -1)
{
	window.location = "/windowsmobile/mobile/default.aspx";
}
else if(navigator.userAgent.toUpperCase().indexOf("PALMSOURCE") != -1)
{
	window.location = "/windowsmobile/mobile/default.aspx";
}
else if(navigator.userAgent.toUpperCase().indexOf("BLACKBERRY") != -1)
{
	window.location = "/windowsmobile/mobile/default.aspx";
}
else if(navigator.userAgent.toUpperCase().indexOf("SYMBIANOS") != -1)
{
	window.location = "/windowsmobile/mobile/default.aspx";
}