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 stopfla()
{
	var flashMovie1=getFlashMovieObject("xmenu1");
	flashMovie1.Rewind();
	var flashMovie2=getFlashMovieObject("xmenu2");
	var flashMovie3=getFlashMovieObject("xmenu3");
	var flashMovie4=getFlashMovieObject("xmenu4");
	flashMovie1.StopPlay();
	
	//flashMovie2.Rewind();
	flashMovie2.StopPlay();
	//flashMovie3.Rewind();
	flashMovie3.StopPlay();
	//flashMovie4.Rewind();
	flashMovie4.StopPlay();
	
}

function playfla1()
{
	var flashMovie1=getFlashMovieObject("xmenu1");
	flashMovie1.Play();
	//embed.nativeProperty.anotherNativeMethod();
}
function playfla2()
{
	var flashMovie2=getFlashMovieObject("xmenu2");
	flashMovie2.Play();
	//embed.nativeProperty.anotherNativeMethod();
}

function playfla3()
{
	var flashMovie3=getFlashMovieObject("xmenu3");
	flashMovie3.Play();
	//embed.nativeProperty.anotherNativeMethod();
}

function playfla4()
{
	var flashMovie4=getFlashMovieObject("xmenu4");
	flashMovie4.Play();
	//embed.nativeProperty.anotherNativeMethod();
}

function abrirgaleria(item){
var temp;
temp="galeria.php?paquete="+item;
window.open(temp,"","scrollbars=0,toolbars=0, width=468, height=405");
}