function insertflv(fichier,w,h,skin,play) {
	document.write('<object type="application/x-shockwave-flash" width="'+w+'" height="'+h+'" data="FLVPlayer_Progressive.swf" >\n');
	document.write('<param name="movie" value="FLVPlayer_Progressive.swf" />\n');
	document.write('<param name="wmode" value="transparent" />');	
	document.write('<param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName='+skin+'&amp;streamName='+fichier+'&amp;autoPlay='+play+'&amp;autoRewind=false" />\n');
	document.write('</object>\n');
}

function insertf(donnee,w,h) {
	document.write('<object type="application/x-shockwave-flash" width="'+w+'" height="'+h+'" data="'+donnee+'">\n');
	document.write('<param name="movie" value="'+donnee+'" />\n');
	document.write('</object>\n');
}

function preloadImages() {
	var d=document; 
	if(d.images){ 
	if(!d.p) d.p=new Array();
	var i,j=d.p.length,a=preloadImages.arguments; 
	for(i=0; i<a.length; i++)
		{
		if (a[i].indexOf("#")!=0){ d.p[j]=new Image; d.p[j++].src=a[i];}
		}
	}
}