	function trackInteractions(id)
	{
		dcsMultiTrack('WT.ti', id);
	}

	function trackInteractionsPopup(id, url, name, specs)
	{
		if (id != null && id != '')
		{
			trackInteractions(id);
		}

		var index = specs.indexOf("width=");
		var index2 = specs.indexOf (",", index + 6);
		var width = specs.substring(index + 6, index2);

		index = specs.indexOf("height=");
		index2 = specs.indexOf (",", index + 7);
		var height = specs.substring(index + 7, index2);

		leftVal = (screen.width - width) / 2;
		topVal = (screen.height - height) / 2;

		specs = specs + ", left=" + leftVal + ",top=" + topVal;

		window.open(url, name, specs);

	}

	function trackInteractionsClickThru(id, url, target)
	{
		if (id != null && id != '')
		{
			trackInteractions(id);
		}


		window.open(url, target);
	}

