// Auteur : AmalgamX
// Version : v1.0
// Licence : CreativeCommons
// SWF = adresse du fichier Flash
// SWF_N = nom fichier Flash
// W_SWF = largeur du Flash
// H_SWF = hauteur du Flash
// ALT_IMG = image alternative
// ALT_TXT = texte alternatif 
function bstat_partnerHtml(swf, swf_n, w_swf, h_swf, alt_img, alt_txt) {
document.write('<object type="application/x-shockwave-flash" data="' + swf + '.swf" width="' + w_swf + '" height="' + h_swf + '">');
document.write('<param name="movie" value="' + swf + '">');
document.write('<param name="wmode" value="transparent">');
if ((alt_img != '') || (alt_img != ' ')) { 
	document.write('<img src="' + alt_img + '" width="' + w_swf + '" height="' + h_swf + '" alt="">');
}
if ((alt_txt != '') || (alt_txt != ' ')) { 
	document.write('<p>' + alt_txt + '</p>'); }
	document.write('</object>');
}