/* ************************************************************* */ 
function AfficheVideo(UrlVideo,largeur,hauteur)
{
	hs.graphicsDir = 'highslide/graphics/';
	hs.showCredits = false;
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
  hs.wrapperClassName= 'no-footer draggable-header '
	hs.fadeInOut = false;
	hs.width = largeur+40;
	hs.height = hauteur+60;
	hs.dimmingOpacity = 0.75;
	hs.htmlExpand(null, {src: 'players/video.php?w='+largeur+'&h='+hauteur+'&vid='+UrlVideo+'', objectType: 'iframe'});	
}
/* ************************************************************* */ 
	function ZoomDirect(Obj)
	{
		hs.showCredits = false;
		hs.graphicsDir = 'highslide/graphics/';
		hs.align = 'center';
		hs.transitions = ['expand', 'crossfade'];
		hs.wrapperClassName = 'wide-border';
		hs.fadeInOut = true;
		hs.dimmingOpacity = 0.75;
 		return hs.expand(Obj);
	}
/* ************************************************************* */ 
	function ZoomIndirect(NomObjet)
	{
		hs.showCredits = false;
		hs.graphicsDir = 'highslide/graphics/';
		hs.align = 'center';
		hs.transitions = ['expand', 'crossfade'];
		hs.wrapperClassName = 'wide-border';
		hs.fadeInOut = true;
		hs.dimmingOpacity = 0.75;
		UneImage=MM_findObj(NomObjet);
 		hs.expand(UneImage)
	}
/* ************************************************************* */ 
