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="'+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="#ffffff" />');
document.writeln('<param name="FlashVars" value="baseUrl='+fullUrl+'&dataSourceBase='+fullUrl+'public/flash/" />');


if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) {
document.writeln(' <embed name="movie" src="'+url+'"');
document.writeln(' quality="high" scale="noscale" bgcolor="#ffffff" menu="false" wmode="transparent" swLiveConnect="true" allowScriptAccess="sameDomain"');
document.writeln(' width="'+width+'" ' + (height ? 'height="'+height+'" ' : ''  )+ '');
document.writeln(' type="application/x-shockwave-flash"');
document.writeln(' pluginspage="http://www.macromedia.com/go/getflashplayer" FlashVars="baseUrl='+fullUrl+'&dataSourceBase='+fullUrl+'public/flash/"> </embed>');
} else {
document.writeln('.......');
}
document.writeln('</object>');
}

