function Warning(id, place, code, area, description, started, finish, text) {
	this.id = id;
	this.place = place;
	this.code = code;
	this.area = area;
	this.description = description;
	this.started = started;
	this.finish = finish;
	this.text = text;
}

var warnings = new Array(
	new Warning(128, "Aberga by, Tortuna golfbana och Stensborgs Åkeri", 9, "15", "Avhjälpt", "", "", ""),
	new Warning(224, "Skultuna tätort", 9, "", "Avhjälpt", "", "", "")
);

