// Permet d'afficher une vidéo avec player_flv_maxi.swf (voir dans /swf/)
function afficher_video(url_video, type)
{
	if (type == 'laboutiquedukite' ) {
		url_config_player ='/swf/flv_config_maxi_laboutiquedukite.txt';
		url_swf = '/swf/player_flv_maxi.swf';
		height_swf = '386';
		width_swf = '525';		
		document.write('<object type=\"application/x-shockwave-flash\" data=\"'+url_swf+'\" height=\"'+height_swf+'\" width=\"'+width_swf+'\"><param name=\"allowFullScreen\" value=\"true\"><param name=\"movie\" value=\"'+url_swf+'\"><param name=\"FlashVars\" value=\"flv='+url_video+'&amp;config='+url_config_player+'\"></object>');		
		return false;
	} 
	
		return false;	
}
