
// ------- Private vars -------
var jsReady = false;
// ------- functions called by ActionScript -------
// called to check if the page has initialized and JavaScript is available
function isReady() { 
	document.getElementById('bandeau_video').style.border="none";
	document.getElementById('bandeau_video').style.padding="0px";
	document.getElementById('bandeau_video').style.backgroundColor="transparent";
	return jsReady;
	}
// called by the onload event of the <body> tag
function pageInit() {
    // Record that JavaScript is ready to go.
    jsReady = true;
}
// extra functions to be called
function launchSWF(o) {
	alert(o);
}
function HideVideoPlayer() {
	document.getElementById('bandeau_video').style.top="2100px"; 
	document.getElementById('bandeau_video').style.display = "none";
}
function HideVideoPlayer2() {
	document.getElementById('bandeau_video').style.top="2100px"; 
	document.getElementById('bandeau_video').style.display = "none";
	window.open("http://www.google.com");
}
//-->

