function ioFlashTrack(what) {
	o = null;
	
	if(what != null) {
		what = what.replace(/index.jsp\//g,"");
	}
	if(window.XMLHttpRequest) {
		o = new XMLHttpRequest();
	} else if(window.ActiveXObject) {
		try {
			o = new ActiveXObject('Msxml2.XMLHTTP');
		} catch(e1) {
			console.log("Tracker Exception 1: "+e1);
			try {
				o = new ActiveXObject('Microsoft.XMLHTTP');
			} catch(e2) {
				console.log("Tracker Exception 2: "+e1);
  			}
 		}
	}

	if(o != null) {
		//console.log("i track: https://dhl-campus-dev-edit.dc.interone.de/cms/track.jsp?target=" + what);
		if(window.location.protocol == "http:") {
			o.open('GET','http://'+window.location.host+'/cms/track.jsp?target='+what,true);
		} else {
			o.open('GET','https://'+window.location.host+'/cms/track.jsp?target='+what,true);
		}
		o.send(null);
	} else {
		console.log("Tracker Object is null!");
	}
}