// Fonction Zoom image interne
function ZoomImage(oID,Coef)
{
	ImgZoomOK=MM_findObj('ImgZoom');
	ImgMini=MM_findObj(oID);

	oSrc=ImgZoomOK.src;
	oWidth=ImgZoomOK.width;
	oHeight=ImgZoomOK.height;
	
	ImgZoomOK.src=ImgMini.src;
	ImgZoomOK.width=ImgMini.width*Coef;
	ImgZoomOK.height=ImgMini.height*Coef;
	
	ImgMini.src=oSrc;
	ImgMini.width=oWidth/Coef;
	ImgMini.height=oHeight/Coef;
	
}