function changeLanguage(value) { var location = String(document.location); location = location.replace(/(&)?lng=[^&]*/, "").replace(/\?$|(\?)&/, "$1"); document.location = location + (/\?/.test(location) ? "&" : "?") + "lng=" + value; } function changeCountry(value) { var location = String(document.location); location = location.replace(/(&)?ctr=[^&]*/, "").replace(/\?$|(\?)&/, "$1"); document.location = location + (/\?/.test(location) ? "&" : "?") + "ctr=" + value; } function changeContactCountry(value) { var location = String(document.location); location = location.replace(/(&)?contactctr=[^&]*/, "").replace(/\?$|(\?)&/, "$1"); document.location = location + (/\?/.test(location) ? "&" : "?") + "contactctr=" + value; } function openPopup(url, width, height, resize, scrollbars, name) { var randomname = "popup" + Math.floor(Math.random()*100); return window.open(url, (name || randomname), "width=" + (width || 500) + ",height=" + (height || 500) + ",resizable=" + (resize ? "yes" : "no") + ",scrollbars=" + (scrollbars ? "yes" : "no") + ",status=" + (resize ? "yes" : "no") + ""); }