/*
** Copyright (c) WorldServe Internet Services
** All Rights Reserved
** For more information, see http://WorldServe.com/copyright
*/

/*
WorldServe(function(){});
*/
window.defaultStatus = 'da Silva Artists';

// adapted from http://www.irt.org/script/782.htm
function launchPlayer()
{
    var _width = 640;
    var _height = 430;

    var width = _width;
    var height = _height + 120;
    var left = (screen.availWidth - width);
    var dimensions = 'width=' + width + ',height=' + height + ',left=' + left + ',';
    var playerWindow = window.open('', 'player', dimensions + 'toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,status=no');

    if (playerWindow.location.href.search(/player\//) == -1)
    {
	playerWindow.location = '/player/';
    }

    playerWindow.focus();
}
