var DietGraphChanger = function(argHash){
	this.userData = argHash;
};
DietGraphChanger.prototype = {
	swfLoad : function(argHash){
		var so = new SWFObject("/graph_amline/amline/amline.swf", "amline", this.userData.width, this.userData.height, "8", "#FFFFFF");
		so.addVariable("path", "/graph_amline/amline/");
		so.addVariable("settings_file", escape(this.userData[argHash.require].settings_file));
		so.addVariable("data_file", escape(this.userData[argHash.require].data_file));
		so.addVariable("preloader_color", "#999999");
		so.write("dietgraph_swf");
	}
}