<!--
// function writeBannerCarrousel:
// xmlSrc is the path to the xmlSource for this specific banner
function writeBannerCarrousel(xmlSrc,imgSrc,altSrc){
	if(hasRightVersion) {  // if we've detected an acceptable version
	    var oeTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"'
	    + 'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"'
	    + 'width="100%" height="350" id="carrousel" align="middle">'
	    + '<param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="/content/images/carrousel.swf?xmlSrc=' + xmlSrc + '" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />'
	    + '<embed src="/content/images/carrousel.swf?xmlSrc=' + xmlSrc + '"  quality="high" wmode="transparent" bgcolor="#ffffff" '
	    + 'width="100%" height="350" name="carrousel" align="middle"'
	    + 'quality="high"'
	    + 'allowScriptAccess="sameDomain"'
	    + 'type="application/x-shockwave-flash"'
	    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
	    + '<\/embed>'
	    + '<\/object>';
	    document.write(oeTags);   // embed the flash movie
	  } else {  // flash is too old or we can't detect the plugin
	    var alternateContent = '<a href="'+ altSrc +'"><img src="'+ imgSrc +'" alt="" /></a>';
	    document.write(alternateContent);  // insert non-flash content
	  }
}
//-->