// Function takes a player HTML id, a video UUID, and an optional flag to show an alert if the player is not found
// Forces the player to download a new SMIL file based on the video UUID and begin playing
function loadVideoAndPlay(playerObjectID, videoUUID, showAlertIfNotFound) {
	if (showAlertIfNotFound == null) showAlertIfNotFound = false;
	var player = document.getElementById(playerObjectID);
	if (player) player.loadVideo(videoUUID, 0, 0, true);
	else if (showAlertIfNotFound) alert("Player is not yet available");
}