// inserts swf
function insertSwf(swfFile, width, height, quality){	
document.write('<object type="application/x-shockwave-flash" data="' + swfFile + '" width="'+width+'" height="'+height+'">\n'); 
document.write('<param name="movie" value="' + swfFile + '">\n'); 
document.write('<param name="WMode" value="">\n'); 
document.write('</object>\n'); 
}