// docwrite.js
function embedFlash(ls_filename,ls_objectid,ln_width,ln_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="'+ln_width+'" height="'+ln_height+'" id="movie" align="">');
//document.write('<param name="movie" value="'+ls_filename+'">');
//OLD -- document.write('<embed src="'+ls_filename+'" quality="high" width="'+ln_width+'" height="'+ln_height+'" name="movie" align="" type="application/x-shockwave-flash" plug inspage="http://www.macromedia.com/go/getflashplayer"> ');
//document.write('</object>');


document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="'+ln_width+'" height="'+ln_height+'">');
document.write('<param name="movie" value="'+ls_filename+'" /> ');
document.write('<param name="quality" value="high" />');
//document.write('<param name="bgcolor" value="#FFFFFF" />');

document.write('<object data="'+ls_filename+'" width="'+ln_width+'" height="'+ln_height+'" type="application/x-shockwave-flash">');
document.write('<param name="quality" value="high" />');

//document.write('<param name="bgcolor" value="#FFFFFF" />');
document.write('<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer" />     ');
document.write('</object>');

document.write('</object>');

}