function flashDetect(width,height,path){
document.write('<object classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + width + '" height="' + height + '"\n');
document.write('codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0">\n');
document.write('<param name="movie" value="' + path + '">\n');
document.write('<param name="quality" value="high">\n');
document.write('<param name="scale" value="exactfit">\n');
document.write('<param name="menu" value="false">\n');
document.write('<param name="wmode" value="opaque">\n');
document.write('<param name="bgcolor" value="#FFF">\n');
document.write('<embed src="' + path + '" quality="high" scale="exactfit" menu="false"\n');
document.write('       bgcolor="#FFF" width="' + width + '" height="' + height + '"\n');
document.write('       type="application/x-shockwave-flash" wmode="opaque"\n');
document.write('       pluginspage="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">\n');
document.write('</embed>\n');
document.write('</object>\n');
}