function write_content (src, alternateImg, width, eight) {
  	if(hasRightVersion) { 
   	 var oeTags = '<object data="'+src+'" ' 
   	 + 'width="'+width+'" height="'+eight+'"'
                 + ' name="flashmovie" id="flashmovie"'
   	 + 'type="application/x-shockwave-flash">'
   	 + '<param name="movie" value="'+src+'">'
   	 + '<param name="play" value="true">'   	
   	 + '<param name="quality" value="high">'
   	 + '<param name="menu" value="false">'   	
   	 + '</object>';

    document.write(oeTags);
  } else {  
   	 var alternateContent = '<img src="'+alternateImg+'" height="'+eight+'" width="'+width+'" alt="Bienvenue sur le portail des activités internationales du courrier">';
   	 document.write(alternateContent);
  	}
}
write_content (src, alternateImg, width, eight);