NSS Cleaning have been busy out in the Community
Read more
Two successful projects for our Maintenance Division
Read more
Meet the Specialist Laura Robertson
Read more
The Safety Sessions: A Fall from Height
Read more
let totalRisk = 0;
window.nssNext = function(step, riskPoints) {
totalRisk += riskPoints;
document.querySelectorAll('.nss-step').forEach(s => s.style.display = 'none');
const nextStep = document.getElementById('step' + step);
if(nextStep) nextStep.style.display = 'block';
};
window.showNssResults = function(lastPoints) {
totalRisk += lastPoints;
document.getElementById('q-container').style.display = 'none';
const res = document.getElementById('nss-results');
res.style.display = 'block';
const icon = document.getElementById('status-icon');
const header = document.getElementById('status-header');
const text = document.getElementById('status-text');
if (totalRisk >= 6) {
icon.innerHTML = "🔴";
header.innerText = "CRITICAL RISK DETECTED";
header.style.color = "#ed1c24";
text.innerText = "Your system may have reverted to gravity flow, risking roof failure. Our 24/7/365 emergency response team is recommended to restore hydraulic balance.";
} else if (totalRisk >= 3) {
icon.innerHTML = "🟡";
header.innerText = "NON-COMPLIANT STATUS";
header.style.color = "#f39c12";
text.innerText = "Your system likely does not meet BS 8490:2025 standards. We recommend a Planned Preventative Maintenance (PPM) audit to ensure long-term asset safety.";
} else {
icon.innerHTML = "🟢";
header.innerText = "SYSTEM COMPLIANT";
header.style.color = "#27ae60";
text.innerText = "Your system appears healthy. Consider a proactive Drone Survey to identify thermal anomalies before they become visible leaks.";
}
};