function TrackInteraction(URL,Type,Label,Value)
{
	var track = new RemoteMethod('Tracking.epi?kNtBzmUK9zU');
	track.MethodName = 'TrackInteraction';
	if(URL == null && Type == null && Label == null && Value == null)
		track.AddArguments(location.href,T_R,T_T,T_L,T_V,T_C);
	else
		track.AddArguments(URL,location.href,Type,Label,Value,T_C);
	track.Invoke();
}