function TJ_Tracking(source) {
	
	this.source = source;
	
	this.track = function (name) {
		document.body.appendChild(this.getIframe(name));
	};
	
	this.getIframe = function(name) {
		var x = document.createElement('div');
		x.style.visibility = "hidden";
		var iframecode = '<iframe frameborder="0" type="new" width="0" height="0" scrolling="no" allowtransparency="true" marginwidth="0" marginheight="0" src="' + this.source + '?c=' + name +'"></iframe>';
		x.innerHTML = iframecode;
		return x;
	};
	
	this.getUrl = function(name) {
		//return this.source + '?code='.
	};
};