Sorry its on a LAN only.
this is the display code
<?php
// get the data types in use
$data_types = data_type_list($dept,$runID);
// create a graph for each data type
$i = 0;
foreach ($data_types as $data_type) {
//NOTE: It's necessary to encode the dataURL if you've added parameters to it
$dataURL = encodeDataURL("/chart_data/temp_scatter.php?animate=0&dept=$dept&runID=$runID&data_type=$data_type");
//Create the chart
echo renderChart("/charts/selectScatter.swf", $dataURL, "", "temp_graph$i", "750px", "500px", false, false);
$i++;
}
?>