function flashbutton(fstr,bgcolor,fgcolor,textcolor,theWidth,theHeight){
	flashstring= fstr + '&bgcolor=' + bgcolor + '&fgcolor=' + fgcolor + '&textcolor=' + textcolor;
	document.write('<OBJECT CLASSID="CLSID:D27CDB6E-AE6D-11CF-96B8-444553540000"');
	document.write('CODEBASE="HTTP://DOWNLOAD.MACROMEDIA.COM/PUB/SHOCKWAVE/CABS/FLASH/SWFLASH.CAB#VERSION=5,0,0,0"');
	document.write('WIDTH='+ theWidth + ' HEIGHT='+ theHeight +' >');
	document.write('<PARAM NAME=MOVIE VALUE="' + flashstring + '">');
	document.write('<PARAM NAME=QUALITY VALUE=HIGH>');
	document.write('<PARAM NAME=BGCOLOR VALUE=#FFFFFF>');
	document.write('<EMBED SRC="' + flashstring + '" QUALITY=HIGH BGCOLOR=#FFFFFF  WIDTH='+ theWidth + ' HEIGHT='+ theHeight +' TYPE="APPLICATION/X-SHOCKWAVE-FLASH" PLUGINSPAGE="HTTP://WWW.MACROMEDIA.COM/SHOCKWAVE/DOWNLOAD/INDEX.CGI?P1_PROD_VERSION=SHOCKWAVEFLASH"></EMBED>');
	document.write('</OBJECT>');
} 