var clang = 'FR';

function playVideo(idMovie,mitreStart)
{
	openWindow('/movies/' + clang + '/popup-trailer.php?mitreStart='+mitreStart+'&idMovie='+idMovie+'&lg='+clang)
}

function openWindow(mypage, width, height)
{
	var width = 650;
	var height = 640;
	var myname = 'universal';
	if(width == '') var width = 650;
	if(height == '') var height = 640;
	var scroll = 'no';
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	winprops = 'height='+height+',width='+width+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function showBanner()
{
	if(document.getElementById('bannerContent'))
		document.getElementById('bannerContent').style.display = '';
	document.getElementById('flashFooterContent').style.display = '';
}

function hideBanner()
{
	if(document.getElementById('bannerContent'))
		document.getElementById('bannerContent').style.display = 'none';
	document.getElementById('flashFooterContent').style.display = 'none';
}

