function getNewChartImage()
{
	var imageURL = "http://clients.weblink.com.au/clients/alumina2/charts_img.asp?";

	//add the form parameters
	imageURL += $("form#chart").serialize();

	// give the image a new src attribute based on the form
	$("img.chartImage").attr("src", imageURL);

	return false;
}
