function flaFont(fsize, id, colour, short){
var obj = document.getElementById(id);
if(obj){
	var t = obj.innerHTML.replace(/<br\s*\/?>/gi,'\n');
	
	//// IE fixes: ///////////
	t = t.replace(/style=\"[^\"]*\"/g, '');
	t = t.replace(/<([^>]*)size=(\d{1,2})([^>]*)>/, "<$1size='$2px'$3>");
	t = t.replace(/<([^>]*)color=\#([a-fA-F0-9]{6})([^>]*)>/, "<$1color='#$2'$3>");
	//////////////////////////
	
	var w = (short)? 475 : 820;
	var fla = (short)? "flash/headline475.swf" : "flash/headline820.swf";
	var h = 5 + t.split('\n').length * fsize;
	
	swfobject.embedSWF(fla, id, String(w), String(h), '9.0.45', 'flash/expressinstall.swf', {caption: String(t), fontsize:String(fsize), fontcolor:String(colour)}, {bgcolor: '#FFFFFF', menu: 'false', wmode:'transparent'}, {id: id});
}
}