weather-tn
`); } function openSatellite() { const satWin = window.open('', '_blank'); satWin.document.write(` Satellite `); } document.addEventListener('keyup', function(e) { if (e.key === 'PrintScreen') { navigator.clipboard.writeText('Screenshots are disabled.'); } }); document.addEventListener('keydown', function(e) { if (e.key === 'PrintScreen') { e.preventDefault(); } }); document.getElementById('bulletinBtn').onclick = openBulletin; document.getElementById('radarBtn').onclick = openRadar; document.getElementById('satBtn').onclick = openSatellite;