function putFlash(url, width, height, id)
{

document.writeln('<object class="flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="'+id+'" align="middle" >');
document.writeln('<param name="movie" value="'+url+'" />');
document.writeln('<param name="scale" value="noscale"/>');
document.writeln('<param name="quality" value="high" />');
document.writeln('<param name="wmode" value="transparent" />');
document.writeln('<param name="bgcolor" value="#000000" />');


if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) {
document.writeln(' <embed name="movie" src="'+url+'"');
document.writeln(' quality="high" scale="noscale" bgcolor="#000000" menu="false" swLiveConnect="true" allowScriptAccess="sameDomain"');
document.writeln(' width="'+width+'" height="'+height+'"');
document.writeln(' type="application/x-shockwave-flash"');
document.writeln(' pluginspage="http://www.macromedia.com/go/getflashplayer"> </embed>');
} else {
document.writeln('.......');
}
document.writeln('</object>');
}
