<!--
function trackClick(btag) {
	setTimeout(function(){writeFrameToPage(btag)}, 100);
}

function writeFrameToPage(btag) {
	var iframe = document.createElement('iframe');
	iframe.src = "http://pixeltrack.flonline.eu/download/?btag=" + btag;
	iframe.setAttribute('width', '1px');
	iframe.setAttribute('height', '1px');
	document.body.appendChild(iframe);
}
-->