function FlashPayerStart(){
	document.getElementById("player").SetVariable("player:jsPlay", "");
}

function FlashPayerPause(){
	document.getElementById("player").SetVariable("player:jsPause", "");
}

function FlashPayerStop(){
	document.getElementById("player").SetVariable("player:jsStop", "");
}

function FlashPayerVolume(value){
	document.getElementById("player").SetVariable("player:jsVolume", value);
}

function FlashPayerTrack(track){
	FlashPayerStop();
	document.getElementById("player").SetVariable("player:jsUrl", track);
	FlashPayerStart();
}

function FlashPayerImage(image){
	document.getElementById("player").SetVariable("player:jsStartImage", image);
}

function FlashPayerPosition(position){
	document.getElementById("player").SetVariable("player:jsSetPosition", position); 
}

