function EnableInvokeURLs( strVideoName, bValue )
{
	var strPlatform = new String( navigator.platform );
	if( strPlatform.toLowerCase().indexOf( "mac" ) == -1 )
	{
		var objVideo = document.embeds[ strVideoName ];
		if( objVideo.SetInvokeURLs )
			objVideo.SetInvokeURLs( bValue );
		else
			objVideo.InvokeURLs = bValue;
	}
}


function Start()
{

EnableInvokeURLs( "VideoVIDEO", false );


}