The BESTRONG Nordic Hamstring Station Pro is a high-performance outdoor fitness tool specifically designed to enhance hamstring strength, flexibility, and injury prevention. This specialized equipment supports controlled Nordic hamstring curls, a proven exercise for building posterior chain strength and improving lower body stability. Perfect for fitness parks, athletic training facilities, and rehabilitation centers, the Nordic Hamstring Station Pro is ideal for athletes and fitness enthusiasts seeking to optimize their training and prevent injuries.
ATTRIBUTES | |
---|---|
Name | Nordic Hamstring Station Pro |
Certificate | – |
Column distance | – |
Height (min-max) | 550 mm |
Critical Fall Height (HIC) | 331 mm |
Capacity | 1 Person |
Type | Sport Specific |
Difficulty level | Medium |
Product Sheet | Download |
Certificate |
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(); };