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="#ffcc00"> \n');
      document.write(' </object> \n');
      return true;
  } else return false;
}

