// JavaScript Document

function getFlashMovieObject(movieName)
{
  if (window.document[movieName]) 
  {
    return window.document[movieName];
  }
  if (navigator.appName.indexOf("Microsoft Internet")==-1)
  {
    if (document.embeds && document.embeds[movieName])
      return document.embeds[movieName]; 
  }
  else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
  {
    return document.getElementById(movieName);
  }
}
 
function StopFlashMovie(id)
{
	var flashMovie=getFlashMovieObject(id);
	flashMovie.StopPlay();
}
 
function PlayFlashMovie(id)
{
	var flashMovie=getFlashMovieObject(id);
	flashMovie.Play();
	//embed.nativeProperty.anotherNativeMethod();
}

function ZoominFlashMovie(id)
{
	var flashMovie=getFlashMovieObject(id);
	flashMovie.Zoom(90);
}
 
function ZoomoutFlashMovie(id)
{
	var flashMovie=getFlashMovieObject(id);
	flashMovie.Zoom(110);
}