// roman:11/22/2009 Begin - callRefinementOmnitureTL function is call from AccordionNav.js to track search refinement type and attribute

/* DEBUG*/
function callRefinementOmnitureTLPrint(pType,pAttribute) {
	alert("s.prop5=\""+pType+"\"|"+
	"s.prop6=\""+pType+": "+pAttribute+"\"|"+
	"s.eVar16=\""+pType+"\"|"+
	"s.eVar17=\""+pType+": "+pAttribute+"\"|"+
	"s.tl(this,'o','"+pType+": "+pAttribute+"')"+
	"|domain="+document.domain+
	"|s_account="+s_account);
}

function callRefinementOmnitureTL(pType,pAttribute) {
	s=s_gi(s_account); // var s_account is set and derived from /atg/adc/omniture/StartJavaScriptProcessor.properties
	s.linkTrackVars="prop5,prop6,eVar16,eVar17";
	s.prop5="\""+pType+"\"";
	s.prop6="\""+pType+": "+pAttribute+"\"";
	s.eVar16="\""+pType+"\"";
	s.eVar17="\""+pType+": "+pAttribute+"\"";
	s.tl(this,'o',"'"+pType+": "+pAttribute+"'");
	/* DEBUG 
	callRefinementOmnitureTLPrint(pType,pAttribute);
	*/
}
//roman:11/22/2009 End
