<script src="/Documents/FusionCharts/FusionCharts.js" type="text/javascript"></script>Then you can add chart in another CEWP:
<div><div id="testChartContainer"></div></div>
<script type="text/javascript">
<!--
FusionCharts.setCurrentRenderer('javascript');
var testChart = new FusionCharts( { id: "chart1", type: "Column2D", width: "400", height: "250"} );
testChart.setXMLUrl("/Documents/testChart.xml");
testChart.render("testChartContainer");
// -->
</script>
Note: SharePoint 2010 could change the content you added to the CEWP via HTML Source editor. You need to make sure that the updated content and script are still valid.