function LoadFlash(file,width,height, id, strObjID)
{
	if ( id == undefined )
	{
		id = 'flash';
	}
	
	var strFlash =	'<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ' +
					'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ' + 
					'WIDTH="' + width + '" HEIGHT="' + height + '" id="' + id + '" VALIGN="top"><PARAM NAME=movie ' +
					'VALUE="' + file +'"><PARAM NAME=loop VALUE=false><PARAM NAME=quality VALUE=best>' +
					'<PARAM NAME=wmode VALUE=transparent><PARAM NAME=salign VALUE=LT>' +
					'<EMBED src="' + file + '" loop=false quality=best salign=LT wmode="transparent"  WIDTH="' + width + '" HEIGHT="' + height + '" ' +
					'NAME="flash" VALIGN="top" TYPE="application/x-shockwave-flash" ' +
					'PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT>'
	
	if (strObjID == undefined )
	{
		document.write( strFlash	);
	}
	else
	{
		document.getElementById(strObjID).innerHTML = strFlash;
	}
	
}
function redimensionarTitulo(largura, altura, id)
{
	if ( id == undefined )
	{
		id = 'flash';
	}
	
	document.getElementById(id).width = largura;
	document.getElementById(id).height = altura;
}