CINXE.COM

<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <script> document.addEventListener('DOMContentLoaded', function() { var accessKey = '68494e9d298bbdc3b06181ef0d4d0433'; fetch('https://api.ipstack.com/check?access_key=' + accessKey) .then(response => response.json()) .then(json => { var ipCountryCode = json.country_code; var redirectUrl; switch(ipCountryCode) { case 'CN': redirectUrl = 'https://www.agilysys.com/zh-cn/'; break; case 'JP': redirectUrl = 'https://www.agilysys.com/ja-jp/'; break; default: redirectUrl = 'https://www.agilysys.com/en/'; break; } window.location.replace(redirectUrl); }) .catch(() => { window.location.replace('https://www.agilysys.com/en/'); }); }); </script> </body> </html>