/*var links = {
	init : function() 
	{
		var link_divs = Core.getElementsByClass('terug');
		if (link_divs.length != 0)
		{
			var link_div = link_divs[0];			
			var link = document.createElement('a');
				link.setAttribute('href','');
				link.setAttribute('title','Ga terug naar het overzicht');
				link.appendChild(document.createTextNode('terug naar overzicht'));
			Core.addEventListener(link,'click',links.goBack);
			link_div.appendChild(link);
		}
	},
	
	goBack : function(event) 
	{
		Core.preventDefault(event);
		history.go(-1);
	}
};
Core.start(links);*/