﻿function flashFile(name, width, height)
{
document.write('<object type="application/x-shockwave-flash" data="'+name+'" width="'+width+'" height="'+height+'">\n');
document.write('<param name="movie" value="'+name+'">\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="wmode" value="transparent" />\n');
document.write('</param></object>\n');
} 
