/* --- Medián WebAudit Mérokód --- */

_webaudit = function ()
{
	this.same = Math.floor(Math.random()*1000000);
	
	this.GetPixel = function(uc)
	{
		rnd = "&rnd=" + Math.floor(Math.random()*1000000);
		
		return '<img style="position:absolute;top:-100px;left:-100px" src="http://audit.median.hu/cgi-bin/track.cgi?uc='+uc+'&dc=1&ui='+this.same+rnd+'" width="1" height="1">';
	}
	
	this.Measure = function(uc)
	{
		var pixelPlaceholder = document.getElementById("webaudit-container");
		
		if (!pixelPlaceholder)
		{
			pixelPlaceholder = document.createElement("div");
			
			pixelPlaceholder.setAttribute("webaudit-generated", "true");
			pixelPlaceholder.setAttribute("id", "webaudit-container");
			
			document.body.appendChild(pixelPlaceholder);
		}
		
		var pixel = this.GetPixel(uc);
		
		pixelPlaceholder.innerHTML = pixel;
	}
}

var Webaudit = new _webaudit();
