<script>
(function () {
var button = document.getElementById('creditCardNoticeButton');
var body = document.getElementById('creditCardNoticeBody');
var arrow = document.getElementById('creditCardNoticeArrow');
if (!button || !body) {
return;
}
button.addEventListener('click', function () {
if (body.style.display === 'none' || body.style.display === '') {
body.style.display = 'block';
if (arrow) {
arrow.innerHTML = '▲';
}
} else {
body.style.display = 'none';
if (arrow) {
arrow.innerHTML = '▼';
}
}
});
})();
</script>
<!--<div class="ec_topicRole">
<div class="ec_topicRole_page">
<a href="" style="width:100%;" alt="MS Rock TV Event"></a>
</div>
</div>-->