function affichevideo(video, credit){
	  html   =  '<object width="588" height="441">';
      html  +=  '<param name="movie" value="' + video + '" />';
      html  +=  '<param name="allowfullscreen" value="true" />';
      html  +=  '<param name="wmode" value="transparent" />';
      html  +=  '<embed src="' + video + '" type="application/x-shockwave-flash" width="588" height="441" allowfullscreen="true" wmode="transparent" />';
      html  +=  '</object>'; 
	document.getElementById("flash_video").innerHTML = '<br>' + html;
	document.getElementById("credits").innerHTML = credit;
}