window.addEventListener('DOMContentLoaded', function() {
var AutoBetLowButton = document.getElementById('AutoBetLowButton'),
LastAutoBetInfoWon = document.getElementById('LastAutoBetInfoWon'),
LastAutoBetInfoLost = document.getElementById('LastAutoBetInfoLost');
AutoBetLowButton.addEventListener('click', function() {
var result = (LastAutoBetInfoWon.style.display !== 'none' ? LastAutoBetInfoWon : LastAutoBetInfoLost).textContent;
alert(result);
});
});