
//old
/*
setTimeout(function()
{
var url = "http" +
(/https:/.test(document.location.href) ? "s" : "") +
"://beacon.scorecardresearch.com/scripts/beacon.dll" +
"?c1=2&c2=6034816&c3=&c4="+escape(document.location.href)+
"&c5=&c6=&c7="+escape(document.location.href)+
"&c8="+escape(document.title)+
"&c9="+escape(document.referrer)+
"&c10="+escape(screen.width+'x'+screen.height)+
"&c15="+
"&rn=" + (new Date()).getTime();
var i = new Image();
i.src = url;
}, 1);
*/

//new
/*
document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b")+ ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));
COMSCORE.beacon({
c1:2,
c2:"6034816",
c3:"",
c4:escape(document.location.href),
c5:"",
c6:"",
c15:""
});
*/


