function traffic( traffic_ID, traffic_same )
{
	var params = new Array();
	// unique code
	params.push( 'uc='+ traffic_ID );
	// screen width x height
	params.push( 'sd='+ screen.width +'x'+ screen.height );
	// color depth
	if ( screen.colorDepth != 'undefined' )
	{
	    params.push( 'cd='+ screen.colorDepth );
	}
	// refering page
	var referrer = encodeURIComponent ? encodeURIComponent( document.referrer ) : escape( document.referrer );
	if ( referrer != '' )
	{
	    params.push( 'rp='+ referrer );
	}
		// unique id against cache
	params.push( 'ui='+ traffic_same );
	document.write( '<img style="position: absolute;" src="http://pixel.blog.hu/12g?' + params.join( '&amp;' ) +'" alt="" />' );
}

var same =	Math.floor(Math.random()*1000000);
