function flashControl(SRC,WIDTH,HEIGHT,FLASHVARS,QUALITY,MENU,BGCOLOR) {

	while ( FLASHVARS.search(' ') != -1 ) {
		FLASHVARS = FLASHVARS.replace(' ', '%20');
	}

	document.write('<object type="application/x-shockwave-flash" data=' + SRC+ ' width=' + WIDTH + ' height=' + HEIGHT + '>');
	document.write('<!--[if IE]><param name="movie" value=' + SRC+ '>< ![endif]-->');

	if ( FLASHVARS ) { document.write('<param name="flashvars" value=' + FLASHVARS + '>'); }
	if ( QUALITY ) { document.write('<param name="quality" value=' + QUALITY +'>'); }
	if ( MENU ) { document.write('<param name="menu" value=' + MENU + '>'); }
	if ( BGCOLOR ) { document.write('<param name="bgcolor" value=' + BGCOLOR + '>'); }

	document.write('<\/object>');
}