var WMArunning = false;
var MP3running = false;
function playEditorArticlesPodCastWMA(editorArticlesID,editorArticlesPodCastWMAPath)
{
	if (!WMArunning)
	{
		Player.URL = "rtsp://www.gamblux.com/editorArticlesPodcasts/" + editorArticlesID + "/" + editorArticlesPodCastWMAPath;
		Player.controls.play();
		eval("document.WMA" + editorArticlesID + ".src='../images/wma-on.gif'")
	}
	else
	{
		Player.controls.stop();
		eval("document.WMA" + editorArticlesID + ".src='../images/wma-off.gif'")
	}
	WMArunning = !WMArunning;									
}
function playEditorArticlesPodCastMP3(editorArticlesID,editorArticlesPodCastMP3Path)
{
	if (!MP3running)
	{
		Player.URL = "rtsp://www.gamblux.com/editorArticlesPodcasts/" + editorArticlesID + "/" + editorArticlesPodCastMP3Path;
		Player.controls.play();
		eval("document.MP3" + editorArticlesID + ".src='../images/mp3-on.gif'")
	}
	else
	{
		Player.controls.stop();
		eval("document.MP3" + editorArticlesID + ".src='../images/mp3-off.gif'")
	}
	MP3running = !MP3running;									
}

function playGameArticlesPodCastWMA(gameArticlesID,gameArticlesPodCastWMAPath)
{
	if (!WMArunning)
	{
		Player.URL = "rtsp://www.gamblux.com/gameArticlesPodcasts/" + gameArticlesID + "/" + gameArticlesPodCastWMAPath;
		Player.controls.play();
		eval("document.WMA" + gameArticlesID + ".src='../images/wma-on.gif'")
	}
	else
	{
		Player.controls.stop();
		eval("document.WMA" + gameArticlesID + ".src='../images/wma-off.gif'")
	}
	WMArunning = !WMArunning;									
}
function playGameArticlesPodCastMP3(gameArticlesID,gameArticlesPodCastMP3Path)
{
	if (!MP3running)
	{
		Player.URL = "rtsp://www.gamblux.com/gameArticlesPodcasts/" + gameArticlesID + "/" + gameArticlesPodCastMP3Path;
		Player.controls.play();
		eval("document.MP3" + gameArticlesID + ".src='../images/mp3-on.gif'")
	}
	else
	{
		Player.controls.stop();
		eval("document.MP3" + gameArticlesID + ".src='../images/mp3-off.gif'")
	}
	MP3running = !MP3running;									
}

function playEditorPRsPodCastWMA(editorPRsID,editorPRsPodCastWMAPath)
{
	if (!WMArunning)
	{
		Player.URL = "rtsp://www.gamblux.com/editorPRsPodcasts/" + editorPRsID + "/" + editorPRsPodCastWMAPath;
		Player.controls.play();
		eval("document.WMA" + editorPRsID + ".src='../images/wma-on.gif'")
	}
	else
	{
		Player.controls.stop();
		eval("document.WMA" + editorPRsID + ".src='../images/wma-off.gif'")
	}
	WMArunning = !WMArunning;
}
function playEditorPRsPodCastMP3(editorPRsID,editorPRsPodCastMP3Path)
{
	if (!MP3running)
	{
		Player.URL = "rtsp://www.gamblux.com/editorPRsPodcasts/" + editorPRsID + "/" + editorPRsPodCastMP3Path;
		Player.controls.play();
		eval("document.MP3" + editorPRsID + ".src='../images/mp3-on.gif'")
	}
	else
	{
		Player.controls.stop();
		eval("document.MP3" + editorPRsID + ".src='../images/mp3-off.gif'")
	}
	MP3running = !MP3running;									
}
