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