try
{

	var imgparent = document.getElementById('cookie_footer');
	
	var cLen=0; 
	if(document.cookie) 
	{ 
	    cArr=document.cookie.split(';'); 
	    if(cArr){var cLen=cArr.length+1;} 
	} 
	var imgObj=document.createElement('img'); 
	imgObj.setAttribute('width','1'); 
	imgObj.setAttribute('height','1'); 
	imgObj.setAttribute('src', 'http://i.cdn.turner.com/money/images/1.gif?cLen='+cLen); 
	imgparent.appendChild(imgObj);

}
catch(e){}