	function StopPlayers(activeID)
	{
		for (id=0; id < playerCount; id++)
		{
			if (id!=activeID)
			{
				thisMovie('Player'+id).StopMe();
			}
		}
	}

	function thisMovie(movieName)
	{
		if (navigator.appName.indexOf("Microsoft") != -1) {
			return window[movieName];
		}
		else {
			return document[movieName];
		}
	}