function generateExplanationTooltip(target, title, content)
{
	new Tip(target, content,
	{
		title: title,
		style: 'esseet',
		stem: {
			position: 'rightBottom',
			height: 12,
			width: 15
		},
		showOn: 'mouseover',
		hook: { tip: 'bottomRight', mouse: false },
		offset: { x: 5, y: 20 }
	});
}