var lang = GetCookie('ocelang');
var redirect = null;
if (lang != null) {
	switch (lang) {
		case 'th-th' : redirect = 'http://th.oce.co.th'; break;
		case 'th-en' : redirect = 'http://en.oce.co.th'; break;
		default: break;
	}
	if (redirect != null) {
  		/*
		setTimeout('window.location.href = redirect',2250);
		*/
		window.location.href = redirect;
  }
}

