
	var browser_name = navigator.userAgent; 
//	alert( browser_name );

	if (navigator.userAgent.match(/iPhone|Mobile|UP.Browser|Android|BlackBerry|Windows CE|Nokia|webOS|Opera Mini|SonyEricsson|opera mobi|Windows Phone|IEMobile|POLARIS/) != null)
	{
		location.href="http://" + location.host + "/mobile";
	}
	else
	{
//		window.location='/index.jsp';
	}

//	alert( navigator.userAgent );

