function integration_video(video, taille) 
{

var repertoire_films = "datas/films/";
var video_w1 = "570";
var video_h1 = "465";
var video_w2 = "100";
var video_h2 = "75";
var video_w3 = "200";
var video_h3 = "150";
var lecteur_flash_video = "flowplayer-3.2.7.swf";

var lecteur = "/include/video/" + lecteur_flash_video;

 if (taille == 1)
 {
  w = video_w1;
  h = video_h1;
  }
 else if (taille == 0 )
 {
  w = video_w2;
  h = video_h2;

   }
 else
 {
  w = video_w3;
  h = video_h3;
  }

 var nombre= Math.floor(Math.random() * 1000)+1;
 var identplayer = 'player'+nombre
 var insertion = "<a  href='"+video+"' style='display:block;width:"+w+"px;height:"+h+"px' id='"+identplayer+"'></a>";

 document.write(insertion);
 
 flowplayer(identplayer, lecteur);

}


