홍콩
국가 선택...
오스트레일리아
싱가포르
덴마크
인도
아랍 에미리트 연방
독일
홍콩
필리핀
미국
인도네시아
// Get current language from URL or HTML
function getCurrentLanguage() {
const languageCodes = ['ko', 'zh', 'ja'];
const pathSegments = window.location.pathname.split('/');
const pathLang = pathSegments.find(segment => languageCodes.includes(segment));
if (pathLang) return pathLang;
const htmlLang = document.documentElement.lang;
if (htmlLang && languageCodes.includes(htmlLang)) return htmlLang;
return 'en';
}
// Get current country from URL
function getCurrentCountry() {
const path = window.location.pathname;
const countries = ['australia', 'singapore', 'copenhagen', 'india', 'dubai', 'germany', 'hongkong', 'philippines', 'usa','indonesia'];
// Look for country name in URL
const currentCountry = countries.find(country =>
path.toLowerCase().includes(`/meet-the-team/${country}/`)
);
return currentCountry || '';
}
// Set the dropdown to current country
function setCurrentCountry() {
const currentCountry = getCurrentCountry();
const dropdown = document.getElementById('countryRedirect');
if (currentCountry && dropdown) {
dropdown.value = currentCountry;
}
}
function redirectToCountry(country) {
if (!country) return;
const baseUrl = 'https://www.synergymarinegroup.com';
const lang = getCurrentLanguage();
// Construct URL based on language
let url;
if (lang === 'en') {
url = `${baseUrl}/about/meet-the-team/${country}/`;
} else {
url = `${baseUrl}/${lang}/about/meet-the-team/${country}/`;
}
// Only redirect if we're going to a different country
if (country !== getCurrentCountry()) {
window.location.href = url;
}
}
// Set current country when page loads
document.addEventListener('DOMContentLoaded', setCurrentCountry);
리더십 팀
25년 이상의 경력을 가진 해양 전문가인 Dyrendra는 2016년 Synergy에 합류했습니다. 사교적인 사람이자 예리한 학습자인 그는 극동 지역의 선박 관리 운영을 책임지고 있으며 회사의 핵심 가치와 매우 조화를 이루고 있습니다. 그는 여가 시간을 가족과 함께 보내고, 때로는 여행을 가거나 크리켓을 보거나 가끔 크리켓을 합니다.
디렌드라 조시
