function InTitle_flashControl(FLASHVARS,MBOTTOM,INDOUBLE,COL) {

	if ( FLASHVARS ) {
		while ( FLASHVARS.search(' ') != -1 ) {
			FLASHVARS = FLASHVARS.replace(' ', '%20');
		}
	}

	if ( MBOTTOM ) {
		var styl = 'style="margin-top: 20px; margin-bottom: '+ MBOTTOM +'px;"';
	} else {
		var styl = 'style="margin-top: 20px;"';
	}

	if ( INDOUBLE )	{
		document.write('<object type="application/x-shockwave-flash" data="images/intitle_' + INDOUBLE + '.swf" width="550" height="40" ' + styl + '>');
		document.write('<!--[if IE]><param name="movie" value="gfx/intitle_' + INDOUBLE + '.swf">< ![endif]-->');
	} else {
		document.write('<object type="application/x-shockwave-flash" data="images/intitle.swf" width="550" height="20" ' + styl + '>');
		document.write('<!--[if IE]><param name="movie" value="images/intitle.swf">< ![endif]-->');
	}

	if ( FLASHVARS ) { document.write('<param name="flashvars" value="Title=' + FLASHVARS + '">'); }
	if ( FLASHVARS && COL ) { document.write('<param name="flashvars" value="Title=' + FLASHVARS + '&Col='+ COL +'">'); }
    document.write('<param name="quality" value="high">');
	document.write('<\/object>');
}