Just thought I would share the syntax for dropping all the charts on a page before you start creating them from scratch.
<script type="text/javascript">
$(document).ready(function () {
// remove previous instances of fusion charts
for (chart in FusionCharts.items) {
FusionCharts(chart).dispose();
}
});
</script>