function insertFlash(id, filename, width, height)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab#version=8,0,22,0" ');
	document.write(' id="id" width="' + width + '" height="' + height + '">');
	document.write('<param name="movie" value="'+ filename +'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<param name="allowScriptAccess" value="always" />');
	document.write('<embed src="'+ filename +'"  name="id"');
	document.write(' width="' + width + '" height="' + height + '" quality="high" bgcolor="#ffffff"');
	document.write(' allowScriptAccess="always" wmode="transparent" type="application/x-shockwave-flash" ');
	document.write(' pluginspage="http://www.macromedia.com/go/getflashplayer" >');
	document.write('</embed>');
	document.write('</object>');
}
