var mid=1;
function sC(n,v,e)
{
    var exdate=new Date();
    exdate.setDate(exdate.getDate()+e);
    document.cookie=n+ "=" +escape(v)+
    ((e==null) ? "" : ";expires="+exdate.toUTCString())+';'+document.cookie;
}

function gC(n)
{
    if (document.cookie.length>0)
    {
        c_start=document.cookie.indexOf(n + "=");
        if (c_start!=-1)
        {
            c_start=c_start + n.length+1;
            c_end=document.cookie.indexOf(";",c_start);
            if (c_end==-1) c_end=document.cookie.length;
            return unescape(document.cookie.substring(c_start,c_end));
        }
    }
    return "";
}

function recordView(aid){
    var uid=gC('rec_uid');
    document.write('<script type="text/javascript" src="http://recommendation.lowca-okazji.pl/view/'+mid+'/'+uid+'/view.js?aid='+escape(aid)+'"></script>');    
}


if (gC('rec_uid')==""){
    
    var hash = Math.round(Math.random() * (9999999 - 1000000) + 1000000);
    sC('rec_uid',hash,90);
}