﻿function insertFlashHeader(flashfile,width,height) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0" id="');
	document.write(flashfile);
	document.write('" width="' + width + '" height="' + height + '">');
	document.write('<param name="movie" value="' + flashfile + '.swf">');
	document.write('<param name="bgcolor" value="#ffffff">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="allowscriptaccess" value="samedomain">');
	document.write('<embed type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" name="');
	document.write(flashfile);
	document.write('" width="' + width + '" height="' + height + '" src="');
	document.write(flashfile);
	document.write('.swf" bgcolor="#ffffff" quality="high" allowscriptaccess="samedomain" wmode="transparent">');
	document.write('<noembed>');
	document.write('</noembed>');
	document.write('</embed>');
	document.write('</object>');
}
