
function launchPlayer() {
	var win = window.open('music/player.html', 'player', 'width=400,height=168,location=no,scrollbars=no,toolbar=no');
	win.focus();
	return false;
}

//++
// cross browser get object by id or name.  if the name is
// not a string, it is passed by unchanged since it can't be an id.
// if it is a string, it tries DOM first, then IE 4/5 then Netscape 4
// if forceIEBehavior is true and the getElementById
// fails, routine will try to find a name instead of IE
//--
function getObj( name, forceIEBehavior )
{
    var newObj;
    if ( typeof name == "string" ) {
        if (document.getElementById) {
            newObj = document.getElementById(name);
            if ( newObj == null && forceIEBehavior != null & forceIEBehavior ) {
                var newObjArray = document.getElementsByName( name );
                if ( newObjArray != null && newObjArray.length > 0 ) 
                    newObj = newObjArray[ 0 ];
            }
        }
        else if (document.all)
            newObj = document.all[name];
        else if (document.layers) 
            newObj = document.layers[name];
    }
    else
        newObj = name;
    return newObj;
}
