var specificPixelSet = false; // Tracks whether or not the Specific Media pixel has been put in place yet.

function showSpecificMediaPixel() {
	if(!specificPixelSet) {
		var ts = (new Date()).getTime();
		var img = new Image();
		// img.setAttribute('src', 'http://smp.specificmedia.com/smp/v=5;m=1;t=513;ts=' + ts);
		img.src = 'http://smp.specificmedia.com/smp/v=5;m=1;t=513;ts=' + ts;
		document.getElementsByTagName('body')[0].appendChild(img);
		specificPixelSet = true;
	}
}

