function flashObject(w,h,flashObj,ida,idb,idc) {

var flashContent = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" height="' + h + '" width="' + w + '">'
	+ '<param name="movie" value="' + flashObj + '.swf?strJours=' + ida + '&strPrix=' + idb +'&country=' + idc +'" />'
	+ '<param name="quality" value="best" />'
	+ '<param name="play" value="true" />'
	+ '<PARAM NAME="wmode" VALUE="transparent" />'
	+ '<PARAM NAME="allowFullScreen" VALUE="true" />'	
	+ '<PARAM NAME="scale" VALUE="noscale" />'	
	+ '<PARAM NAME="salign" VALUE="tl" />'	
	+ '<embed height="' + h + '" pluginspage="http://www.macromedia.com/go/getflashplayer" src="' + flashObj + '.swf?strJours=' + ida + '&strPrix=' + idb +'&country=' + idc +'" type="application/x-shockwave-flash" width="' + w + '" quality="best" play="true" wmode="transparent" scale="noscale" allowFullScreen="true" salign="tl"></embed>'
	+ '</object>';
return flashContent;

}