/**************************************************************************
* Play Buttons
**************************************************************************/
var retPopup;
function Preview(mediaIDs, mediaIndex, video)
{
	var handler = retPopup = window.open("", "Player", "width=589, height=337,resizable = no");
	if(handler)
	{
		if(handler.location.href)
		{
			if(handler.location.href.indexOf("player.aspx") < 0)
			{
				handler.location = "player.aspx?mediaIDs=" + mediaIDs + "&mediaIndex=" + mediaIndex + "&video=" + video;
				handler.focus();
			}
			else
			{
				handler.AddItem(mediaIDs, mediaIndex, video);
				handler.focus();
			}
		}
	}
}