﻿function funShowSafetyTip(div) {
    
    document.getElementById('divSafetyTipsEnglish').style.display = 'none';
    document.getElementById('divSafetyTipsSpanish').style.display = 'none';
    document.getElementById('divSafetyTipsGerman').style.display = 'none';
    document.getElementById('divSafetyTipsPortuguese').style.display = 'none';

    document.getElementById(div).style.display = 'block';
    return false;
}