﻿var strDeepLink = '';

function CheckEventState() {
}

var strUrl = new String(document.location);
var arrUrl = splitURLVars(strUrl);

if (arrUrl['deeplink'] != '' && arrUrl['deeplink'] != null) {
	if (arrUrl['deeplink'].indexOf('truth_about_tony_question_') == -1) {
		if (parseInt(arrUrl['deeplink'], 10) > 1) {
			strDeepLink = 'truth_about_tony_question_' + arrUrl['deeplink'];
		} else {
			strDeepLink = 'truth_about_tony_question_01';
		}
	} else {
		strDeepLink = arrUrl['deeplink'];
	}
}

