// JavaScript Document
function genereSWF(swf, dest, flashvars, width, height) {
  if (document.getElementById(dest)) {	  
    document.getElementById(dest).innerHTML = ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'"><param name="movie" value="'+swf+'" /><param name="allowScriptAccess" value="sameDomain"><param name="flashvars" value="'+flashvars+'" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed allowScriptAccess="sameDomain" src="'+swf+'" flashvars="'+flashvars+'" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed></object>');
	  
    }
}
function afficheGrandFormat(photoACharger){
	receptGrdFormat=document.getElementById('receptFlash');
	fond=document.getElementById('voile');
	btn=document.getElementById('closePopupBtn');
	declin=document.getElementById('Declinaison');
	fond.style.display="block";
	receptGrdFormat.style.display="block";	
	btn.style.display="block";	
	if (declin!=null){
		declin.style.display="none";
	}
	genereSWF('/swf/ficheArticleZoom4.swf', 'receptFlash', 'photoACharger='+photoACharger, 700, 600);
}

function masqueGrandFormat(){
	receptGrdFormat=document.getElementById('receptFlash');
	fond=document.getElementById('voile');
	btn=document.getElementById('closePopupBtn');
	declin=document.getElementById('Declinaison');
	fond.style.display="none";
	receptGrdFormat.style.display="none";	
	btn.style.display="none";	
	if (declin!=null){
		declin.style.display="inline";
	}
}
