function execSiteCatalyst() {

	var channel = "NM/Campaigns/Consistency Counts";
	var pageName = "Consistency Counts Scorecard";
	var tool = pageName;
	var eventID = "event19";  //indicator for NM version being viewed
	var agentnum = "";
	var URL = window.location.href;
	
	//determine if visit is coming from a field website and take appropriate action if so
	if (/agent/.test(URL)==true){
		var agentnumFull = s.getQueryParam('agentNumber');
		var agentnum = agentnumFull.replace(/^0/, '');  //remove leading 0 to cut agentnum from 6 to 5 characters
		var eventID = "event20";	//indicator for FWS version being viewed
	}
	
	s.pageName=pageName;//name of current page
	s.server="";//server ID if app is distributed
	s.channel=channel;//site section
	s.hier2=channel; //added 6/3/10
	s.pageType="";//set to errorPage on custom error pages
	s.prop1="";//search term
	s.prop2="";//# search results
	s.prop3="";//self-service type
	s.prop4=tool;//tool name
	s.prop5=agentnum;//agent ID
	s.prop6="";//client status
	s.prop7="";//time parting hour (automatically set)
	s.prop8="";//time parting day (automatically set)
	s.prop9="";//application ID
	/* Conversion Variables */
	s.campaign="";//set manually or automatically set when cmpid param is in query string
	s.state="";
	s.zip="";
	s.events=eventID;//set to event6 for application start, event7 for application complete.  prop9 must have the same value on both the start and complete page
	s.products="";
	s.purchaseID="";
	s.eVar1="";//automatically set
	s.eVar2="";//automatically set
	s.eVar3="";//automatically set
	s.eVar4="";//automatically set
	s.eVar5="";//automatically set
	s.eVar6="";//automatically set
	s.eVar7="";//automatically set
	s.eVar8="";//automatically set
	s.eVar9="";//automatically set
	
	try {
		s.t();
	} catch (err) {
		//do nothing
	}
}

execSiteCatalyst();//run immediately, may cause problems if DOM readiness is required to set SiteCatalyst variables (ex: you need to use document.getElementByID())
//window.onload = execSiteCatalyst;//run when page is done loading (DOM is ready), may conflict with other javascript using this event
