/* Use on the MyProfile page to track adding and removing show update features */
function trackShowUpdates(element, showName) {
	/* determine if we track this as "remove" or "add" */
	var userAction = '';
	this.showElement = element;
	if (element && element.checked) {
		userAction = 'add';
	}else if(element && ! element.checked) {
		userAction = 'remove';
	}

	/* send pixel */
	var s=s_gi(s_account);
	s.linkTrackVars='prop16';
	s.prop16='MyTNT:' + userAction + ' show updates:' + showName;
	s.tl(this,'o','MyTNT:' + userAction + ' show updates');
}

/* Use from the MyTNT traveling nav to track when pages are bookmarked. */
function trackAddBookmark() {
 var s=s_gi(s_account);
 s.linkTrackVars='eVar1,events';
 s.linkTrackEvents='event7';
 s.events='event7';
 s.tl(this,'o','MyTNT: add bookmark');
}