function Event(time, description, endTime, loc, bol, title, image_path)
{
	this.date = new Date(time);
	this.info = description;
	this.endDate = new Date(endTime);
	this.location = loc;
	this.dispTime = bol;
	this.title = title;
	this.image_path = image_path;
}


function getD(time, time2)
{
	if(time.date>time2.date)
	{
		return 1;
	}
	else if(time.date<time2.date)
	{
		return -1
	}
	else
	{
		return 0
	}
}