function launchPlayer()
{
    var centerWidth = (window.screen.width - 870) / 2;
    var centerHeight = (window.screen.height - 630) / 2;

    popupPlayer = window.open('http://loudcity.com/stations/distortion-radio/files/show/player.html', '', 'location=1,toolbar=0,menubar=0,status=0,resizable=0,scrollbars=0,width=870,height=630' + 
        ',left=' + centerWidth + 
        ',top=' + centerHeight);

    popupPlayer.focus();
    return popupPlayer.name;
}