function getFlashMovie(movieName) 
{
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document[movieName];
}
function collectText(string, movieName) 
{
	var text = string;
	movieName = movieName || "musicPlayer";
	getFlashMovie(movieName).sendTextToFlash(text);
}

function stopPlayer(string, movieName) 
{
	var text = string;
	movieName = movieName || "musicPlayer";
	try {
		getFlashMovie(movieName).showHideControls(text);
	} catch (e) {}
}