//------------------------------------------------------------------------------
function setPlaylistTrackIDs(trackIDs)
{
	var form			=	document.playerForm;
	form.target			=	"content";
	form.method			=	"get";
	form.action			=	"/player/play-list/";
	form.act.value		=	"addToPlayList";
	form.trackIDs.value	=	trackIDs;
	form.submit();
}
//------------------------------------------------------------------------------
function emailPlaylist(trackIDs)
{
	parent.content.iFrameWindow("/player/play-list/?act=emailToFriends&done=false&trackIDs="+trackIDs, "E-mail this playlist to Friend(s)", "width=500px,height=400px,resize=0,scrolling=0,center=1");
}
//------------------------------------------------------------------------------
function buyPlayerTracks(trackIDs, what)
{
	parent.content.buyItem(trackIDs, what);
}
//------------------------------------------------------------------------------