function flash(file, width, height)
{
//document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" align="" bgcolor="#0f0f0f">');
document.write('<object type="application/x-shockwave-flash" data="'+file+'" width="'+width+'" height="'+height+'" bgcolor="#0f0f0f">\n');
document.write('<param name="movie" value="'+file+'">');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="loop" value="false" />\n');
document.write('<param name="wmode" value="transparent" />\n');
//document.write('<embed src="'+file+'" quality="high" width="'+width+'" height="'+height+'" name="movie" align="" bgcolor="#0f0f0f" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
document.write('</object>');
}

/*
function flash(file, width, height)
{
document.write('<object type="application/x-shockwave-flash" data="'+file+'" width="'+width+'" height="'+height+'">\n');
document.write('<param name="movie" value="'+file+'" />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="loop" value="false" />\n');
document.write('<param name="wmode" value="transparent" />\n');
document.write('</object>\n');
}
*/
/*
function bande_annonce(id) {
var file = '/upload/bandes-annonces/'+id+'/pageflip_loader.swf';
var width = 700;
var height = 430;
var bgcolor = '#0f0f0f';

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" id="ba-'+id+'" align="" bgcolor="'+bgcolor+'">');
document.write('<param name="movie" value="'+file+'">');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="loop" value="false" />\n');
document.write('<param name="wmode" value="transparent" />\n');
document.write('<embed src="'+file+'" quality="high" width="'+width+'" height="'+height+'" name="movie" align="" bgcolor="'+bgcolor+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
document.write('</object>');
}
*/