var News = Array();
var NewsCount = 0;

var Contacts = Array();
var ContactsCount = 0;

var References = Array();
var ReferencesCount = 0;

function NewsObject(id,title,text,date,hundate) {
	this.id = id;
	this.title = title;
	this.text = text;
	this.date = date;
	this.hundate = hundate;
	this.mod = 1;
}

function ContactObject(id,text,image) {
	this.id = id;
	this.text = text;
	this.image = image;
	this.mod = 1;
}

function ReferenceObject(id,text) {
	this.id = id;
	this.text = text;
	this.mod = 1;
}
