function ButtonFix(buttonName)
{
	var a = '<param name="movie" value="';
	var b = '">\n';
	var line2 = a + buttonName + b;

	var c = '<embed src="';
	var d = '" width="200" height="46" hspace="20" vspace="11" align="texttop" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" bgcolor="#249E46"></embed>\n';
	var line4 = c + buttonName + d;

	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="200" height="46" hspace="20" vspace="11" align="texttop">\n');
	document.write(line2);
        document.write('<param name=quality value=high><param name="BGCOLOR" value="#249E46">\n');
        document.write(line4);
        document.write('</object>\n');


}
