// JavaScript Document

function advert6_DoFSCommand(command,args) {
	
			
	setTimeout('hideflash()', 100)
		
}	

function hideflash() {
	o=document.getElementById('flashcont');
		o.style.display="none";
		
}

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 PlayFlashMovie()
{
	var flashMovie=getFlashMovieObject("advert6");
		o=document.getElementById('flashcont');
		o.style.display="block";
	
	flashMovie.Play()
	
	
}