Discover a fresh approach to staying fit with BeStrong Fitness Parks – your gateway to outdoor fitness that’s both inviting and sophisticated. We’ve channelled our passion and expertise into creating four distinct fitness park categories to suit a variety of settings: FitStay for hotels, FitSociety for communities, FitLiving for residential complexes, and FitCampus for schools. Join us as we bring communities together through fitness, blending the beauty of nature with the joy of staying active.
We are excited to offer a range of solutions to meet the diverse needs of different groups:
Quality is at the heart of everything we do at BeStrong Fitness Parks. Our outdoor fitness equipment is built to withstand the elements and provide years of reliable service. We’re here to help communities create fitness spaces that are not only functional but also fit seamlessly into their surroundings, offering solutions that are both attractive and durable.
Explore the BESTRONG site that suits your preferences!
// Function to set a cookie with the specified name, value, and expiration time function setCookie(name, value, days) { var expires = new Date(); expires.setTime(expires.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = name + "=" + value + ";expires=" + expires.toUTCString() + ";path=/"; }
// Function to check if the closing cookie exists function checkClosingCookie() { var cookies = document.cookie.split(";");
for (var i = 0; i < cookies.length; i++) { var cookie = cookies[i].trim(); if (cookie.indexOf("spu_closing_18961") === 0) { return true; // Closing cookie exists } }return false; // Closing cookie does not exist }// Function to handle the popup display function displayPopup() { // Check if the closing cookie exists if (!checkClosingCookie()) { // Show your popup code here // Replace the following line with your actual popup display code console.log("Popup should be displayed now!");// Set the closing cookie for 365 days setCookie("spu_closing_18961", "true", 365); } }// Call the displayPopup function on page load window.onload = function() { displayPopup(); };