function Player(PlayList, NumSongs)
	{
	var pHeight=19+(NumSongs*23);
	var s1 = new SWFObject("../javascript/mp3player.swf", "playlist", "240", pHeight, "7");
	s1.addVariable("file", PlayList);
	s1.addVariable("backcolor","0x333366");
	s1.addVariable("frontcolor","0xffffff");
	s1.addVariable("lightcolor","0xffffcc");
	s1.addVariable("displayheight","0");
	s1.addVariable("autostart","true");
	s1.addVariable("shuffle","false");
	s1.addVariable("repeat","list");
	s1.addVariable("volume","80");
	s1.write("player1");
	}

var playerWindow;
function NewPlayerWindow(WindowHtml, NumSongs)
	{
	var pHeight=180+(NumSongs*23);
	if (playerWindow) 
		playerWindow.close();	//	Close open window first for IE.
	playerWindow =
		open(WindowHtml
			,"TangoNo9Player"
			,"channelmode=no"
				+",width=432"
				+",height="+pHeight
				+",directories=no"
				+",fullscreen=no"
				+",location=no"
				+",menubar=no"
				+",resizable=yes"
				+",status=no"
				+",titlebar=yes"
				+",toolbar=no"
			);
	setTimeout("ShowPlayer()", 500);
	}

function ShowPlayer()
	{
	if (playerWindow)
		playerWindow.focus();
	}
