BESTRONG’s mobile platform allows for quick installation on flat and hard ground, without foundation-work costs. The platform and the equipment mounted on it can be easily moved as a single unit by means of lifting attachable screw-hooks in the corners of the platform. The hot-dip galvanised steel frame provides outstanding corrosion resistance and durability, while the elegant non-slip aluminium plate surface ensures a stable and secure base even during intensive workouts.
The mobile platform can be ordered for the following devices: 1-1-319 Weighted Bench Press, 1-1-320 Weighted Low Row,
1-1-321 Weighted Bicep Curl, 1-1-322 Weighted Tricep Pull-down, 1-1-323 Weighted Squat Machine.
ATTRIBUTES | |
---|---|
Name | Mobile Platform |
Certificate | EN 16630 |
Height (min-max) | 80 mm |
Weight | 178 kg |
Product Sheet | Download |
Certificate | Download |
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(); };