// JavaScript Document

/*
Function that forces the redraw of the flash content.
This is necessary because FireFox on a Mac hides the flash
content when the user exits full screen mode.  This function
will be called by Flash when the user exits full screen mode.
*/

function forceRedraw() {

  $("videoPlayer").focus();
}




function playVideo(videoURL)
{
	var videoPlayer=$("videoPlayer");
	videoPlayer.playVideo(videoURL);
}
