
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}



function runSWF(fichier,w,h) {
  var NomNav = navigator.appName;
  if (NomNav == 'Microsoft Internet Explorer') {
      document.write(' <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width='+w+' height='+h+'> \n');
      document.write(' <param name="MOVIE" value='+fichier+'> \n');
      document.write(' <PARAM NAME=wmode VALUE=transparent> \n');
      document.write(' <param name="QUALITY" value="HIGH"> \n');
      document.write(' <param name="BGCOLOR" value="#FFAA00"> \n');
      document.write(' </object> \n');
      return true;
  } else return false;
}

