$(document).ready(createRadioLink);

function createRadioLink() {
    radioLink = $('#xma4').get(0).href;
    $('#xma4').get(0).href = 'javascript:void(0);';
    $('#xma4').get(0).target = '';
    $('#xma4').bind('click',function () {
        try {
            window.parent.sound.location = 'empty.html';
            $('#radioOff').hide();
            $('#radioOn').show();
            //document.getElementById('radioOn').style.display='inline';
        } catch(e) {}
        
        popUp = window.open(radioLink, "popUp", "top=0,left=" + (screen.width/2 - 265) +",width=530,height=177,resizable=0,toolbar=0,scrollbars=0,location=0,status=0,menubar=0");
		popUp.focus();
    });
}
