/* tracking functions - added 3-20-09 */

function trackLink(href, catstr) {
	//random number generation 
	var axel = Math.random() + "";  
	var a = axel * 1000000000000000000;  

	document.url = href; 
	var doPing = new Image(); 
	// the URL below is a spotlight tag for page1 
	doPing.src = 'http://fls.doubleclick.net/activityi;src=2044067;type=shoec012;cat='+catstr+';ord='+ a + '?'; 
	doPing.onLoad = passed(); 
	return false; 
}

function passed() {
	document.location = document.url;
} 
