playerWin = null;
function open_radio()
{
    playerWin = window.open('music.php', 'player', 'width=400,height=170');
    if (playerWin && playerWin.focus) {
        playerWin.focus();
    }
}

