function flashControl(SRC,WIDTH,HEIGHT,FLASHVARS,WMODE,BGCOLOR,ALIGN,STYLE,CLASS,SPACE) {

	while ( FLASHVARS.search(' ') != -1 ) {
		FLASHVARS = FLASHVARS.replace(' ', '%20');
	}
	if ( ALIGN ) {
	    var algn = 'align="' + ALIGN + '"';
	}
	if ( STYLE ) {
	    var styl = 'style="' + STYLE + '"';
	}
	if ( CLASS ) {
	    var clss = 'class="' + CLASS + '"';
	}

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

	if ( FLASHVARS ) { document.write('<param name="flashvars" value=' + FLASHVARS + '>'); }
	if ( WMODE ) { document.write('<param name="wmode" value=' + WMODE + '>'); }
	if ( BGCOLOR ) { document.write('<param name="bgcolor" value=' + BGCOLOR + '>'); }

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