var url=new String();
var date=new Date();

url = server_host+'/stats_js.php?';
url += 'r_id='+stats_request_id;

//Jak user ma zablokowane cookiesy, to warunek ma zawsze wartość true
if (readCookie('stats_guest_id_saved') != stats_request_guest_id) {
	
	//Test Cookie
	setCookie("stats_test_cookie",'_',1);
	if (readCookie('stats_test_cookie') == '_') g_cookie = 1; else g_cookie = 0;
	setCookie("stats_test_cookie",'',1);

    url += '&g_id='+stats_request_guest_id;
	url += '&g_tz='+date.getTimezoneOffset();
	url += '&g_flash='+flashversion;
	url += '&g_cookie='+g_cookie;
	if (screen) {
		if (screen.width) url+='&g_screen='+screen.width+'x'+screen.height;
		if (screen.colorDepth) url+='&g_color='+screen.colorDepth;
	}
}

setCookie("stats_guest_id_saved",stats_request_guest_id,1);

//document.write(url);
//alert(url);
// http://acn.dynamap3.dynamap.pl/stats_js.php?g_tz=-120&g_screen=1152x864&g_color=32g_flash=7g_id=21

var stats_img = new Image(1,1);
stats_img.src = url;

