
function affFlash(f_id, f_width, f_height, f_value) {

document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.writeln('  codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0"');
document.writeln('  id="'+f_id+'" width="'+f_width+'" height="'+f_height+'">');
document.writeln('  <param name="movie" value="'+f_value+'">');
document.writeln('  <param name="quality" value="high">');
document.writeln('  <embed name="'+f_id+'" src="'+f_value+'" quality="high"');
document.writeln('    width="'+f_width+'" height="'+f_height+'"');
document.writeln('    type="application/x-shockwave-flash"');
document.writeln('    pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
document.writeln('  </embed>');
document.writeln('</object>');

}

