var movieTrailer;

function ShowTrailer(trailerUrl)
{
	//if(!movieTrailer)
	//{
		movieTrailer = new Ext.Window(
		{
			layout:'fit',
			resizable: false,
			draggable: true,
			closeAction:'close',
			html:'<object id="MovieTrailer" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="850" height="350" BGCOLOR="#000000"> <param name="src" value="' + trailerUrl + '" /> <param name="controller" value="false" /> <param name="autoplay" value="true" /> <param name="scale" value="ASPECT" /><!--[if !IE]--><EMBED name="MovieTrailer" width="850" height="350" src="' + trailerUrl + '" type="video/quicktime" pluginspage="www.apple.com/quicktime/download" controller="false" autoplay="true" /><!--![endif]--></object>'
		});
	//}
	//else
	//{
		//QT_WriteOBJECT(trailerUrl , '100%', '100%', '', 'EnableJavaScript', 'True', 'emb#NAME' , 'MovieTrailer' , 'obj#id' , 'MovieTrailer') ;
		//document.MovieTrailer.innertHTML(' <param name="src" value="' + trailerUrl + '" /> <param name="controller" value="false" /> <param name="autoplay" value="true" /> <param name="scale" value="ASPECT" /><!--[if !IE]--><EMBED name="MovieTrailer" width="850" height="350" src="' + trailerUrl + '" type="video/quicktime" pluginspage="www.apple.com/quicktime/download" controller="false" autoplay="true" /><!--![endif]-->');
		//document.MovieTrailer.SetURL(trailerUrl);
		//document.MovieTrailer.Play();
	//}

	movieTrailer.on('beforehide', function()
	{
		document.MovieTrailer.Stop();
		document.MovieTrailer.Rewind();
	});
	
	movieTrailer.show();

	/*
	var TrailerBubble = document.getElementById('TrailerBubble-Main');
	var Trailer = document.getElementById('TrailerBubble-Trailer');
	
	if (TrailerBubble.style.display == '' || TrailerBubble.style.display == 'none')			
	{
		TrailerBubble.style.display = 'block';
		//Trailer.innerHTML = '<embed src="'+ trailerUrl +'" width="480" height="230" autoplay="true" loop="false" pluginspage="http://www.apple.com/quicktime/"></embed>';
		//Trailer.innerHTML = '<embed src="' + trailerUrl + '" width="850" height="350" codebase="http://www.apple.com/qtactivex/qtplugin.cab" autoplay="true" loop="false" controller="false" scale="ASPECT" showlogo="false"></embed>';
	}
	else
	{
		TrailerBubble.style.display = 'none';
		Trailer.innerHTML = '';
	}
	*/
}
