function clickProduct(term, artId, artPos, pageNum, artSimi, sessionId,
		artTitle, eventName) {
	if (eventName == null) {
		eventName = 'click';
	}
	$.ajax( {
		type : 'POST',
		url : document.location.protocol+'//www.fritz-berger.de/fact-finder-batch/SCIC.ff',
		data : {
			query : encodeURI(term),
			id : artId,
			pos : artPos,
			page : pageNum,
			simi : artSimi,
			sid : encodeURI(sessionId),
			title : encodeURI(artTitle),
			event : encodeURI(eventName)
		},
		contentType : 'application/x-www-form-urlencoded; charset=iso-8859-1',
		cache : false,
		async : true
	});
}