function flashDisplay(id, width, height, wmode){
document.write('<object\n');	document.write('type="application/x-shockwave-flash"');
document.write('data="flash/' + id + '.swf"');
document.write('width="' + width + '" height="' + height + '">\n');
document.write('<param name="loop" value="false" />\n');
document.write('<param name="wmode" value="' + wmode + '" />\n');
document.write('<param name="movie" value="flash/' + id + '.swf" />\n');
document.write('</object>\n');
}
