// Call the pauseVideo() function within the SWF file.
function callFLVPlaybackPause(elementID) {
	document.getElementById(elementID).pauseVideo();
}
// Call the stopVideo() function within the SWF file.
function callFLVPlaybackStop(elementID) {
	document.getElementById(elementID).stopVideo();
}
function callFLVPlaybackPlay(elementID) {
	document.getElementById(elementID).playVideo();
}
function callFLVPlaybackStopStart(elementID) {
	document.getElementById(elementID).stopstartVideo();
}