// Launch the MMVA06 custom video player
function PlayVideo( url )
{
	var videoPlayer = window.open( 
		"/events/mmva06/video/?url=" + url,
		"videoPlayerWindow", 
		"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,left=0,top=0,width=695,height=514" );
	
	if( videoPlayer )
	{
		videoPlayer.focus();
	}
	else
	{
		alert( "We didn't seem to be able to open a popup window in your browser.\nPlease make sure pop-up blocking is turned off and try again." );
	}
}