var mp3_url="http://club.taifookstudio.com/uploads/userup/1329/1254T3U3-X28.mp3?";




function _getFlashObject()
{
	return document.getElementById("myFlash");
}
var playing = false;
function onInit(){
 window.setTimeout(
  function(){
   _getFlashObject().SetVariable("method:setUrl", mp3_url);
   _getFlashObject().SetVariable("method:play", "");
   playing = true;
  }, 1000);
}

function ppmp3(){
 if (playing){
  _getFlashObject().SetVariable("method:pause", "");
  playing = false;
 }else{
  _getFlashObject().SetVariable("method:play", "");
  playing = true;
 }
}

function ppstop(){
  _getFlashObject().SetVariable("method:stop", "");
  playing = false;
}
function ppplay(){
  _getFlashObject().SetVariable("method:play", "");
  playing = true;
}