//pls_track.js

function loadTrackImage(siteId, categId, word){
	var searchedWord= getCookieValue('LAST_SEARCH');
	if(categId==null||categId==''){
		categId= 'NULL';
	}
	if(word!=null&&searchedWord!=null&&word==searchedWord){
		var request= '<img width=1 height=1 border=0 bordercolor=white src=\"http://pulsecnt.mercadolibre.com/jm/ml.web.pulse.WordCounterServlet?as_site_id='+siteId+'&as_categ_id='+categId+'&as_word='+word+'\">';
		document.write(request);
	}
}
