var ua = navigator.userAgent;
var chk1 = ua.indexOf('IEMobile',0);
var chk2 = ua.indexOf('NetFront',0);
var chk3 = ua.indexOf('Opera Mobi',0);
if ( (chk1 > 0) || (chk2 > 0) || (chk3 > 0) ) {
	window.location = 'list_area.html';
}
void(0);
