En realidad no usa coockies, se fija en lo que pones en la url, pon esto en tu blog al final de la págna..
Código Javascript
:
Ver original<script>
function get(name){
if(name=(new RegExp('[?&]'+encodeURIComponent(name)+'=([^&]*)')).exec(location.search)) ;
return decodeURIComponent(name[1]);
}
var enlaces = document.getElementsByTagName('a');
if( get('id') != ''){
for(i=0;i<enlaces.length;i++){
if(enlaces[i].href.toString().indexOf('?') == "-1"){
enlaces[i].href = enlaces[i].href + '?id=' + get('id');
}else{
enlaces[i].href = enlaces[i].href + '&id=' + get('id');
}
}}
</script>