function putMyFlashResizable(themovie) {
	var addToFlash = '';
	if (arguments.length > 1) {
		// il y a des arguments à passer au flash
		for (i=1; i<arguments.length; i+=2) {
			addToFlash += arguments[i] +"="+arguments[i+1]+"&";
		}
		//
		themovie += "?"+addToFlash;
		//alert(themovie);
	} 
	
	var tmpflash = '';
	tmpflash += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" align="top">';
	tmpflash += '<param name="movie" value="'+themovie+'">';
	tmpflash += '<param name="quality" value="high">';
	tmpflash += '<param name="bgcolor" value="#ffffff">';
	tmpflash += '<param name="menu" value="false">';
	tmpflash += '<embed src="'+themovie+'" width="100%" height="100%" align="top" quality="high" scale="noscale" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>';
	tmpflash += '</object>';
	//return tmpflash;
	document.write(tmpflash);
}