//<![CDATA[
var myListener = new Object();
myListener.onInit = function() { this.position = 0; };

myListener.onUpdate = function() {
	var isPlaying = (this.isPlaying == "true");
};

function getFlashObject() {
	return document.getElementById("myFlash");
}
function play() {
	if (myListener.position == 0) {
		getFlashObject().SetVariable("method:setUrl", "/templates/js/plugins/mp3player/beanandbeluga.mp3");
	}
	getFlashObject().SetVariable("method:play", "");
	getFlashObject().SetVariable("enabled", "true");
}
function stop() {
	getFlashObject().SetVariable("method:stop", "");
}
//]]>
