var player_window = "";
function launch_player(path,width,height)
{
	// default params  jal changed height from 175 to 225 IF INCLUDING TRACK
	if (width==null) { width = 500; }
	if (height==null) { height = 175; }
	
	player_window = window.open(path, "player", 'location=no,width='+width+',height='+height+',toolbar=no,directories=no,resizable=no,status=no,menubar=no,scrollbars=no');
	if (window.focus) {player_window.focus();}
	return false;
}