<!--
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Gérer tous les messages FSCommand d'une animation Flash.
function menu_bas_DoFSCommand(command, args) {
	var menu_basObj = isInternetExplorer ? document.all.menu_bas : document.menu_bas;
	//
	if(command=="camlive"){ 
     camlive() 
} 

function camlive(){ 
    window.open('camlive.php','','height=415,width=510,left=50,top=10,toolbar=no'); 
} 	
	
	
	
	if(command=="newsletter"){ 
     newsletter() 
} 
function newsletter(){ 
    window.open('newsletter_jukebox.php','','height=200,width=510,left=50,top=10,toolbar=no'); 
} 


	if(command=="plan"){ 
     plan() 
} 
function plan(){ 
    window.open('situer_jukebox.php','','height=415,width=510,left=50,top=10,toolbar=no'); 
} 




if(command=="openWindow"){ 
     openNewWindow() 
} 
function openNewWindow(){ 
    window.open('popup.htm','','height=200,width=200,left=50,top=10,toolbar=no'); 
} 
	//
}
// Hook pour Internet Explorer
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub menu_bas_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call menu_bas_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
//-->