// JavaScript Document

function flash(url_video, titre, div, width, height)
{
	var obj =  document.getElementById(div);
	
	obj.innerHTML  = '<object width="'+width+'" height="'+height+'" title="'+titre+'"><param name="movie" value="images/flash/'+url_video+'" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="images/flash/'+url_video+'" quality="high" type="application/x-shockwave-flash" wmode="transparent" width="'+width+'" height="'+height+'"></embed></object>';
}